linux下配置ARP代理服务器

来源:互联网 发布:淘宝新手如何提高销量 编辑:程序博客网 时间:2024/05/16 10:25

在linux下配置arp代理服务器仅需要设置内核proxy_arp参数:

echo 1 > /proc/sys/net/ipv4/conf/eth0/proxy_arp

或者

sysctl -w "net.ipv4.conf.eth0.proxy_arp=1"

其中的eth0是监听arp请求并进行响应的网卡接口。


ref:

1、http://lartc.org/howto/lartc.bridging.proxy-arp.html

2、http://www.sjdjweis.com/linux/proxyarp/

3、http://www.linuxproblem.org/art_8.html

0 0
原创粉丝点击