Update build_nat_network.sh

This commit is contained in:
spiritLHLS 2023-04-10 14:34:28 +08:00 committed by GitHub
parent 566ad780bc
commit cf56263580
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -55,12 +55,13 @@ iface vmbr1 inet static
EOF EOF
fi fi
# 加载iptables并设置回源 # 加载iptables并设置回源且允许NAT端口转发
if ! command -v iptables &> /dev/null; then if ! command -v iptables &> /dev/null; then
green "iptables 未安装,正在安装..." green "iptables 未安装,正在安装..."
apt-get install -y iptables apt-get install -y iptables
fi fi
iptables -t nat -A POSTROUTING -j MASQUERADE iptables -t nat -A POSTROUTING -j MASQUERADE
sysctl net.ipv4.ip_forward=1
# 重启配置 # 重启配置
service networking restart service networking restart