Linux如何清理ARP缓存?

Linux如何清理ARP缓存?,第1张

1、系统初始arp环境\x0d\x0a[root@esx ~]# arp -n\x0d\x0aAddress HWtype HWaddress Flags Mask Iface\x0d\x0a192.168.1.175 ether 00:24:1D:97:B6:7F C vswif0\x0d\x0a192.168.1.120 ether 00:1F:C6:3A:DC:81 C vswif0\x0d\x0a192.168.1.51(incomplete) vswif0\x0d\x0a\x0d\x0a2、执行清除所有arp 缓存命令\x0d\x0a[root@esx ~]# arp -n|awk '/^[1-9]/{print "arp -d " $1}'|sh -x\x0d\x0a+ arp -d 192.168.1.175\x0d\x0a+ arp -d 192.168.1.120\x0d\x0a+ arp -d 192.168.1.51\x0d\x0a\x0d\x0a3、执行命令后,本机arp缓存信息\x0d\x0a[root@esx ~]# arp -n\x0d\x0aAddress HWtype HWaddress Flags MaskIface\x0d\x0a192.168.1.175 (incomplete)vswif0\x0d\x0a192.168.1.120 (incomplete)vswif0\x0d\x0a192.168.1.51 (incomplete) vswif0

最大可能是存在网络环路,导致网络风暴了。检查IP192.168.21.19所在电脑或终端的位置,对电脑进行杀毒、检查是否存在物理环路、是否在电脑上连接有线+无线通知开启网桥配置等。 可以下载一个聚生网管类的局域网管理软件,这样就可以很直观的看到哪些IP或者MAC地址发出的ARP信息。从而快速确定故障点,进行故障排查。

1、系统初始arp环境

[root@esx ~]# arp -n

Address HWtype HWaddress Flags Mask Iface

192.168.1.175 ether 00:24:1D:97:B6:7F C vswif0

192.168.1.120 ether 00:1F:C6:3A:DC:81 C vswif0

192.168.1.51(incomplete) vswif0

2、执行清除所有arp 缓存命令

[root@esx ~]# arp -n|awk '/^[1-9]/{print "arp -d " $1}'|sh -x

+ arp -d 192.168.1.175

+ arp -d 192.168.1.120

+ arp -d 192.168.1.51

3、执行命令后,本机arp缓存信息

[root@esx ~]# arp -n

Address HWtype HWaddress Flags MaskIface

192.168.1.175 (incomplete)vswif0

192.168.1.120 (incomplete)vswif0

192.168.1.51 (incomplete) vswif0


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/9001360.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-23
下一篇 2023-04-23

发表评论

登录后才能评论

评论列表(0条)

保存