http://www.nabble.com/Disable-ARP-td13222034.html
ifconfig lo -arp
ip link set lo:1 arp off
Agreed, if you configure the IP on the loopback interface then add the following sysctl options it'll probably work how you want it to:
net.ipv4.conf.all.arp_ignore = 1
net.ipv4.conf.all.arp_announce = 2
preup() {
/sbin/ifconfig dummy0 -arp;
return 0
}
config_dummy0=( "ipaddress" )
Posted by 눈빛마음

