Iptables 使用

suzhouclark發表於2011-11-03
d[@more@]First you need to tell your kernel that you want to allow IP forwarding.
echo 1 > /proc/sys/net/ipv4/ip_forward

Then you'll need to configure iptables to forward the packets from your internal network, on /dev/eth1, to your external network on /dev/eth0. You do this will the following commands:

/sbin/iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE
/sbin/iptables -A FORWARD -i eth0 -o eth1 -m state --state RELATED,ESTABLISHED -j ACCEPT
/sbin/iptables -A FORWARD -i eth1 -o eth0 -j ACCEPT
===============================================================
===============================================================

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/9697/viewspace-1056118/,如需轉載,請註明出處,否則將追究法律責任。

相關文章