1. 程式人生 > >iptables nat 應用

iptables nat 應用

com png log mas iptables tab 轉發 alt -s

如下,A 機器有兩塊網卡,一塊連內網一塊連外網,B 機器只有一塊內網網卡,怎麽讓 B 機器連通外網

技術分享

A 機器打開路由轉發:echo "1" > /proc/sys/net/ipv4/ip_forward

A 機器上設置路由轉發:iptables -t nat -A POSTROUTING -s 192.168.1.0/24 -o eth1 -j MASQUERADE

B 機器上設置設置網關:route add default gw 192.168.1.1

iptables nat 應用