# # - format unchanged # - added comments # # -- field descriptions: # field 1 this field contains the ethernet interface on which # to advertise reachability of an IP. # field 2 this field contains the IP address for which to advertise # # -- notes # # - white space, lines beginning with a comment and blank lines are ignored # # -- examples # # - each example is commented with an English description of the # resulting configuration # - followed by a pseudo shellcode description of how to understand # what will happen # # -- example #1; advertise for 10.10.15.175 on eth1 # # eth1 10.10.15.175 # # for any arp request on eth1; do # if requested address is 10.10.15.175; then # answer arp request with our ethernet address from eth1 (so # that the reqeustor sends IP packets to us) # fi # done # # -- example #1; advertise for 172.30.48.10 on eth0 # # eth0 172.30.48.10 # # for any arp request on eth1; do # if requested address is 10.10.15.175; then # answer arp request with our ethernet address from eth1 (so # that the reqeustor sends IP packets to us) # fi # done # # -- add your own configuration here # -- end /etc/proxy-arp.conf # ]]>