此配置为精简配置,若要基于安全考虑,请详细设置iptables的策略
eth0 为外网接口,eth1 为内网接口
intranet --> eth1 --> nat --> eth0 -->internet
vim /etc/sysctl.conf net.ipv4.ip_forward=1 sysctl -p iptables -F iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE iptables -t filter -A FORWARD -i eth0 -o eth1 -j ACCEPT iptables -t filter -A FORWARD -o eth1 -i eth0 -j ACCEPT service iptables save
Linux启用nat路由
时间: 2024-11-06 03:54:11