В Cisco IOS команда show способна гибко фильтровать необходимые нам данные, чтобы не просматривать все
Выглядит это так show | command
section - показывает целый раздел, заданный фильтром R1#show running-config | section line vty line vty 0 4 password 7 14141B180F0B login transport input none
include - все строки, соответствующие фильтру R1#show ip interface brief | include up Ethernet0/0 192.168.10.1 YES manual up up Ethernet0/1 192.168.11.1 YES manual up up Loopback0 10.0.0.1 YES manual up up
exclude - исключает строки фильтра R1#show ip interface brief | exclude unassigned Interface IP-Address OK? Method Status Prot ocol Ethernet0/0 192.168.10.1 YES manual up up Ethernet0/1 192.168.11.1 YES manual up up Loopback0 10.0.0.1 YES manual up up
begin - показывает все строки конкретного места, начиная с того, что задано в фильтре R1#show ip route | begin Gateway Gateway of last resort is not set
10.0.0.0/8 is variably subnetted, 2 subnets, 2 masks C 10.0.0.0/24 is directly connected, Loopback0 L 10.0.0.1/32 is directly connected, Loopback0 192.168.10.0/24 is variably subnetted, 2 subnets, 2 masks C 192.168.10.0/24 is directly connected, Ethernet0/0 L 192.168.10.1/32 is directly connected, Ethernet0/0 192.168.11.0/24 is variably subnetted, 2 subnets, 2 masks C 192.168.11.0/24 is directly connected, Ethernet0/1 L 192.168.11.1/32 is directly connected, Ethernet0/1