标签:table firewall 数据 执行 上网 服务 通过 保存 网卡ip
两台服务器,一台国内,一台海外,做了内网互通,现要国内端的数据通过内网转发到海外端来上网的需求
1.安装iptables也可以用firewalld
安装好iptables确认是否启动成功
2.开启系统路由转发功能
vi /etc/sysctl.conf
net.ipv4.ip_forward = 1
保存退出,然后执行sysctl -p
3.配置路由转发把国内端公网卡的数据包的转发到内网卡
iptables -t nat -D POSTROUTING -s 175.102.19.0/24 -o eno33554952 -j MASQUERADE (175.102.19.0/24是公网卡ip段,eno33554952内网卡)
标签:table firewall 数据 执行 上网 服务 通过 保存 网卡ip
原文地址:https://www.cnblogs.com/yunweiweb/p/12817931.html