คำตอบง่ายๆคือสำหรับการทำแผนที่แบบหนึ่งต่อหนึ่งจาก IOS กับ NX-OS ดูเหมือนว่า:
IOS : show run | inc (interface Vlan)|(ip address)
NX-OS : show run | inc 'interface Vlan|ip address'
โปรดทราบว่าการดำเนินการนี้เหมาะสมกว่าเมื่อคุณไม่ต้องใช้การเสริมพิเศษในต้นฉบับ:
show run | inc (interface Vlan|ip address)
กุญแจสำคัญในตัวอย่างนี้คือสำหรับ NX-OS parens จะถูกแทนที่ด้วยเครื่องหมายคำพูด
""
นอกจากนี้คุณยังสามารถใช้คำพูดสองคือ
NX-OS นั้นใช้ Linux [1]และใช้เอ็นจิ้นนิพจน์ปกติเหมือน * nix คำสั่งนั้นมีลักษณะคี่ประกอบด้วยถ้อยคำภาษาอังกฤษและสำนวนมาตรฐาน regex
ตัวอย่างเช่นสิ่งที่จะเป็นegrep -v
ทุบตีจะมีลักษณะเหมือนegrep ignore-case
ในบรรทัดคำสั่งนี้จะมีลักษณะเช่น
show run | egrep ignore-case vpc
หรือ
show run | inc ignore-case vpc
ตัวอย่างของการใช้คำฟุ่มเฟื่อย (และความแข็งแรง) ของคุณสมบัติ regex ใหม่:
show run | egrep ignore-case vpc | egrep invert-match ignore-case peer
นี่จะเทียบเท่ากับ bash-shell egrep -i vpc <input> | egrep -vi peer
อย่างไรก็ตามมีพลังและความยืดหยุ่นมากกว่าใน IOS ปัจจุบัน
เอกสารพื้นฐานของ Cisco อยู่ที่นี่ * แต่?
คุณสมบัติบรรทัดคำสั่งของคุณจะช่วยเตือนคุณได้อย่างรวดเร็ว:
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
จากนั้นคุณจะต้องการค้นหา "สนุก" (มีอะไรอีก) เพื่อค้นหาคำแนะนำในการกำหนดค่าพื้นฐาน (ซึ่งมีส่วนนิพจน์ปกติในบทการทำความเข้าใจกับส่วนต่อประสานบรรทัดคำสั่ง )
ไข่อีสเตอร์? หมายเลขบทเป็นเลขฐานสองสำหรับเอกสารนี้
ถ้าคุณเดินผ่านเอกสารคุณจะพบมาก * เพิ่มเติมระวังเหมือนเครื่องมือบรรทัดคำสั่งรวมทั้งcut
, tr
และใน 7K, sed
และบางส่วนสินค้าอื่น ๆ
นอกจากนี้อย่ามองข้ามprev
และnext
ปรับเปลี่ยนสำหรับการแข่งขัน 'รวม'
วิธีนี้จะดึงบรรทัดที่มี foo รวมถึงสามบรรทัดก่อนและสองบรรทัดหลังสำหรับบริบท:
show run | inc foo prev 3 next 2