Łatwa odpowiedź jest taka, że dla mapowania jeden na jeden z IOS na NX-OS wygląda to tak:
IOS : show run | inc (interface Vlan)|(ip address)
NX-OS : show run | inc 'interface Vlan|ip address'
Pamiętaj, że ma to większy sens, gdy pominiesz dodatkowe pareny w oryginale:
show run | inc (interface Vlan|ip address)
Kluczem w tym przykładzie jest to, że w przypadku NX-OS pareny są zastępowane znakami cudzysłowu.
Możesz także użyć podwójnych cudzysłowów, tj ""
.
NX-OS jest oparty na Linuksie [1] i wykorzystuje silnik wyrażeń regularnych podobny do * nix. Polecenia są nieparzyste i obejmują między angielskim sformułowaniem a standardowymi idiomami wyrażeń regularnych.
Na przykład to, co byłoby egrep -v
w bashie, wyglądałoby egrep ignore-case
w wierszu poleceń
show run | egrep ignore-case vpc
lub
show run | inc ignore-case vpc
Przykład szczegółowości (i siły) nowych funkcji wyrażenia regularnego:
show run | egrep ignore-case vpc | egrep invert-match ignore-case peer
Byłoby to równoważne z powłoką bash egrep -i vpc <input> | egrep -vi peer
Niemniej jednak jest tutaj znacznie więcej mocy i elastyczności niż w obecnym IOS.
Podstawowa dokumentacja Cisco znajduje się tutaj *, ale ?
funkcja wiersza poleceń daje szybkie przypomnienia:
5k# show run | ?
cut Print selected parts of lines.
diff Show difference between current and previous invocation (creates temp files: remove them
with 'diff-clean' command and dont use it on commands with big outputs, like 'show
tech'!)
egrep Egrep - print lines matching a pattern
grep Grep - print lines matching a pattern
head Display first lines
human Output in human format
last Display last lines
less Filter for paging
no-more Turn-off pagination for command output
section Show lines that include the pattern as well as the subsequent lines that are more
indented than matching line
sort Stream Sorter
tr Translate, squeeze, and/or delete characters
uniq Discard all but one of successive identical lines
vsh The shell that understands cli command
wc Count words, lines, characters
xml Output in xml format (according to .xsd definitions)
begin Begin with the line that matches
count Count number of lines
end End with the line that matches
exclude Exclude lines that match
include Include lines that match
5k# show run | inc ?
WORD Search for the expression
ignore-case Ignore case difference when comparing strings
line-exp Print only lines where the match is a whole line
5k# show run | egrep ?
WORD Search for the expression
count Print a total count of matching lines only
ignore-case Ignore case difference when comparing strings
invert-match Print only lines that contain no matches for <expr>
line-exp Print only lines where the match is a whole line
line-number Print each match preceded by its line number
next Print <num> lines of context after every matching line
prev Print <num> lines of context before every matching line
word-exp Print only lines where the match is a complete word
Następnie przeszukaj „zabawne” (co jeszcze?), Aby znaleźć Podręcznik konfiguracji podstaw (który zawiera sekcję Wyrażenia regularne w rozdziale Zrozumienie interfejsu wiersza poleceń ).
Jajko wielkanocne? Numery rozdziałów są dwójkowe dla tego dokumentu.
Jeśli idziesz przez docs, można znaleźć wiele więcej * nix-like narzędzi wiersza polecenia, w tym cut
, tr
i na 7K, sed
a niektóre inne gadżety.
Nie pomijaj też modyfikatorów prev
i next
dopasowań dla dopasowań „uwzględnij”.
Spowoduje to pobranie linii zawierających foo, a także trzy linie przed i dwie linie po dla kontekstu:
show run | inc foo prev 3 next 2