Clear ARP Cache - SPLAT

here is an alternative by using the fabulous ip utility.
(Only supported on SecurePlatform/Linux)

Flush all arp enties on interface eth0:
Code:
# ip neigh flush dev eth0
Flush arp entry for host 10.20.30.40:
Code:
# ip neigh flush 10.20.30.40
Flush arp entry for all hosts in network 192.168.0.0/24:
Code:
# ip neigh flush 192.168.0.0/24
Flush all arp entries:
Code:
# ip neigh flush all
For verbose output use:
Code:
# ip -s -s neigh flush ...
Comments are invited if any other easy way

Comments

0 Responses to "Clear ARP Cache - SPLAT"

Post a Comment