disabling the ARP protocol in linux box

I need to disable the system level ARP protocol to perform some experiment in my ubuntu 11.10 system. So please help me in disabling the ARP module/protocol in my system.

2

3 Answers

Does this help?

To supress ARP on interface eth0 run the following command as root:

ip link set dev eth0 arp off

To turn it back on again:

ip link set dev eth0 arp on

2

Disable ARP protocol:
sudo ifconfig wlan0 -arp

Enable ARP protocol:
sudo ifconfig wlan0 arp

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like