Skip to content

ubuntu ip转发 nat 共享上网

2、进入终端,输入命令 sudo su 进入管理员模式;

3、接着输入命令,开启路由功能:

sysctl -w net.ipv4.ip_forward=1

4、接着依次输入下列命令:

sudo iptables -F
sudo iptables -P INPUT ACCEPT
sudo iptables -P FORWARD ACCEPT
sudo iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE

这样主机就设好了,如果想自动运行,可以如下操作:

1)在文件 /etc/sysctl.conf 里加入一行 net.ipv4.ip_forward = 1

2)在文件 /etc/rc.local 里加入下面的几行(注意,加在 exit 0 的前面):

sudo iptables -F
sudo iptables -P INPUT ACCEPT
sudo iptables -P FORWARD ACCEPT
sudo iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE

设好以后,重新启动一下计算机;

Comments are closed, but trackbacks and pingbacks are open.