扫一扫
分享文章到微信
扫一扫
关注官方公众号
至顶头条
这个命令的用途其实无须多说,它显示了接口以及它们的状态。下面是你使用该命令可以获得到的相关信息:
以我的观点,使用show interfaces命令,主要是用于五个重要方面:
列表A提供了一个show interfaces命令的示例输出,显示了4种不同类型的接口 :千兆以太网口, 回环接口(Loopback), 隧道端口(Tunnel), 以及串口(Serial)。注意每种不同类型的接口有不同类型的输出。
在这个输出中,你可以看到,show interfaces命令产生了大量有价值的信息。不过,如果你在一个路由器上有25个或者更多的接口时,输出就变得令人头痛不已了。下面我们来看 看如何对输出进行限制,只获取你最希望了解的信息。
了解选项
show interfaces命令以数量众多的选项而自豪,这些选项让你可以对输出信息进行限定。你可以指定接口类型,就像指定接口号一样:
show interfaces {接口类型} {接口号}
使用这个选项,你可以查看单个接口的输出。下面是一个示例:
Router# show interfaces ethernet 0/0
Ethernet0/0 is administratively down, line protocol is down
Hardware is AmdP2, address is 0003.e39b.9220 (bia 0003.e39b.9220)
Internet address is 1.1.1.1/8
MTU 1500 bytes, BW 10000 Kbit, DLY 1000 usec,
reliability 255/255, txload 1/255, rxload 1/255
Encapsulation ARPA, loopback not set
Keepalive set (10 sec)
ARP type: ARPA, ARP Timeout 04:00:00
Last input 4d06h, output never, output hang never
Last clearing of "show interface" counters never
Queueing strategy: fifo
Output queue 0/40, 0 drops; input queue 0/75, 0 drops
5 minute input rate 0 bits/sec, 0 packets/sec
5 minute output rate 0 bits/sec, 0 packets/sec
19 packets input, 2330 bytes, 0 no buffer
Received 19 broadcasts, 0 runts, 0 giants, 0 throttles
0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored
0 input packets with dribble condition detected
0 packets output, 0 bytes, 0 underruns
0 output errors, 0 collisions, 0 interface resets
0 babbles, 0 late collision, 0 deferred
0 lost carrier, 0 no carrier
0 output buffer failures, 0 output buffers swapped out
Router#
你也可以使用show interfaces命令查看输出的整体概要。使用这个选项,你可以看到每一个接口和状态的概要状况。
举例来说,假设你在寻找一个接收速率超过512Kbps的接口,或者你正试图寻找一个在输入队列中丢包的接口。无论是哪种,summary这个选项可以帮助你更快的找到所需的信息。 下面是一个示例:
Router# show interfaces summary
*: interface is up
IHQ: pkts in input hold queue IQD: pkts dropped from input queue
OHQ: pkts in output hold queue OQD: pkts dropped from output queue
RXBS: rx rate (bits/sec) RXPS: rx rate (pkts/sec)
TXBS: tx rate (bits/sec) TXPS: tx rate (pkts/sec)
TRTL: throttle count
Interface IHQ IQD OHQ OQD RXBS RXPS TXBS TXPS TRTL
----------------------------------------------------------------------
Ethernet0/0 0 0 0 0 0 0 0 0 0
Serial0/0 0 0 0 0 0 0 0 0 0
Serial0/1 0 0 0 0 0 0 0 0 0
Router#
你也可以对该命令使用管道符(|)以及begin,include和exclude选项。下面是一个使用include选项的例子:
Router# show interfaces | inc CRC
29 input errors, 29 CRC, 0 frame, 0 overrun, 0 ignored, 53 abort
1375 input errors, 5 CRC, 30 frame, 0 overrun, 0 ignored, 22 abort
24 input errors, 142 CRC, 19 frame, 9 overrun, 5 ignored, 64 abort
140 input errors, 14 CRC, 47 frame, 0 overrun, 0 ignored, 30 abort
114 input errors, 9 CRC, 29 frame, 0 overrun, 0 ignored, 18 abort
你可以使用“begin”来控制含有特定字符串的行出现时才开始输出。这样,你可以跳过不需要的部分,而直接跳到特定的部分,而无需通览全部输出。下面是一个示例:
router# show interfaces | beg Serial
Serial0/2 is up, line protocol is up
Hardware is GT96K with 56k 4-wire CSU/DSU
MTU 1500 bytes, BW 56 Kbit, DLY 20000 usec,
reliability 255/255, txload 1/255, rxload 1/255
Encapsulation FRAME-RELAY IETF, loopback not set
Keepalive set (10 sec)
LMI enq sent 2586870, LMI stat recvd 2586785, LMI upd recvd 0, DTE LMI up
LMI enq recvd 24, LMI stat sent 0, LMI upd sent 0
LMI DLCI 0 LMI type is ANSI Annex D frame relay DTE
Broadcast queue 0/64, broadcasts sent/dropped 0/0, interface broadcasts 0
Last input 00:00:05, output 00:00:05, output hang never
Last clearing of "show interface" counters 42w5d
Input queue: 0/75/0/13 (size/max/drops/flushes); Total output drops: 0
Queueing strategy: fifo
Output queue: 0/40 (size/max)
5 minute input rate 0 bits/sec, 0 packets/sec
5 minute output rate 0 bits/sec, 0 packets/sec
9574781 packets input, 398755727 bytes, 0 no buffer
Received 0 broadcasts, 0 runts, 0 giants, 0 throttles
2761 input errors, 2761 CRC, 1120 frame, 624 overrun, 0 ignored, 2250 abort
9184611 packets output, 289103201 bytes, 0 underruns
0 output errors, 0 collisions, 195 interface resets
0 output buffer failures, 0 output buffers swapped out
668 carrier transitions
DCD=up DSR=up DTR=up RTS=up CTS=up
(责任编辑:陈毅东)
如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。
现场直击|2021世界人工智能大会
直击5G创新地带,就在2021MWC上海
5G已至 转型当时——服务提供商如何把握转型的绝佳时机
寻找自己的Flag
华为开发者大会2020(Cloud)- 科技行者