您使用什么命令查看Cisco 路由器上的 ARP 超时设置?
不是特定 ARP 条目的剩余时间或老化时间。但实际的超时设置本身。我知道默认情况下是 4 小时,我只需要知道 show 命令显示的内容。
一些在线搜索将我指向show arp timeout
或show ip arp timeout
但这些都不适用于我尝试过的 GNS3 路由器。它可能只在真正的路由器上可用,在这种情况下,我很想得到确认。(并且有人发布来自真实路由器的命令输出)。
您使用什么命令查看Cisco 路由器上的 ARP 超时设置?
不是特定 ARP 条目的剩余时间或老化时间。但实际的超时设置本身。我知道默认情况下是 4 小时,我只需要知道 show 命令显示的内容。
一些在线搜索将我指向show arp timeout
或show ip arp timeout
但这些都不适用于我尝试过的 GNS3 路由器。它可能只在真正的路由器上可用,在这种情况下,我很想得到确认。(并且有人发布来自真实路由器的命令输出)。
唉,菜鸟的错误。该命令arp timeout
仅在接口配置模式下可用,并针对每个接口进行设置。您可以在以下位置查看设置show interface
:
router1# conf t
Enter configuration commands, one per line. End with CNTL/Z.
router1(config)# arp timeout 99999
^
% Invalid input detected at '^' marker.
router1(config)# int eth0/1
router1(config-if)# arp timeout 99999
router1(config-if)# end
*Jan 11 17:37:56.285: %SYS-5-CONFIG_I: Configured from console by console
router1# show int eth0/1 | i Timeout
ARP type: ARPA, ARP Timeout 1d03h
router1# show int eth0/1
Ethernet0/1 is administratively down, line protocol is down
Hardware is AmdP2, address is aabb.cc00.0110 (bia aabb.cc00.0110)
MTU 1500 bytes, BW 10000 Kbit/sec, 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 1d03h
Last input never, output never, output hang never
Last clearing of "show interface" counters never
Input queue: 0/75/0/0 (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
...