Basic System Configuration Guide CLI Usage
Edition: 01 3HE 11010 AAAC TQZZA 39
Bindings on SDP 101 has been updated."
A:ALU-12# show log log-id 98 | match max-count 1 "service 1001"
"Status of service 1001 (customer 1)changed to administrative state: up, operational
state: up"
*A:ALU-12# admin display-config | match post-lines 5 max-count 2 expression "snmp”
snmp
exit
login-control
idle-timeout disable
pre-login-message "csasim2 - " name
exit
snmp
view "testview" subtree "1"
mask ff
exit
view "testview" subtree "1.3.6.1.2"
mask ff type excluded
*A:ALU-12#
Table 9 describes regular expression symbols and interpretation (similar to what is
used for route policy regexp matching).
Table 9 Pipe/Match Characters
String Description
. Matches any single character
[ ] Matches a single character with what is contained within the brackets
[abc] matches “a”, “b”, or “c”
[a-z] matches any lowercase letter
[A-Z] matches any uppercase letter
[0-9] matches any number
[^ ] Matches a single character with what is not contained within the brackets
[^abc] matches any character other than “a”, “b”, or “c”
[^a-z] matches any single character that is not a lowercase letter
^ Matches the start of the line (or any line, when applied in multiline mode)
$ Matches the end of the line (or any line, when applied in multiline mode)
() Defines a “marked subexpression”
Every matched instance will be available to the next command as a variable
* A single character expression followed by “*” matches zero or more copies of
the expression
{m,n} Matches at least m and at most n repetitions of the term