所有在Linux系统下 arp -d $ip 命令只能清除一个IP地址的对应MAC地址缓存,可以使用组合命令操作。
组合命令清楚所有arp缓存:
arp -n|awk '/^[1-9]/{system("arp -d "$1)}'
以上命令必须 root 才可以执行。
使用ip命令清除某一网络接口的arp(下面命令是 eth0 接口)
ip neigh flush dev eth0
Linux 清除arp缓存是把列表标记为(incomplete),在下一次系统清理垃圾是会清除。
RedHat Linux下ARP实验:http://www.linuxdiyf.com/linux/11591.html
Linux下ARP相关操作:http://www.linuxdiyf.com/linux/9654.html
Cisco查找ARP及防范:http://www.linuxdiyf.com/linux/1220.html