2010年10月6日 星期三

Clean linux ARP cache

一、這樣可以清除單一IP的ARP緩存
arp -d IP

二、清除192.168.0.0網段的所有暫存

for((ip=2;ip<255;ip++));do \ arp -d 192.168.0.$ip &>/dev/null; \
done

三、清除所有ARP

arp -n|awk '/^[1-9]/ {print "arp -d "$1}' | sh


Reference:
http://www.linuxzh.org/Linux/arp-clean.html

沒有留言: