在使用 iptables 设置指定的 IP 使用某个端口进行转发功能时,你可以按照以下步骤进行操作。这些步骤包括确定目标 IP 和端口、编写 iptables 规则、应用规则、测试转发功能,并根据需要进行调整。 1. 确定要转发的目标 IP 和端口 首先,你需要明确哪个源 IP 地址(或地址范围)将被允许转发到哪个目标 IP 地址和端口。例...
/sbin/iptables -t nat -A POSTROUTING -s 10.4.0.0/16 -o $WAN_INT -j SNAT --to 124.126.86.137 /sbin/iptables -t nat -A PREROUTING -d 124.126.86.138 -p tcp --dport 2022 -j DNAT --to-destination 10.4.3.150:22 /sbin/iptables -t nat -A PREROUTING -d 124.126.86.138 -p tcp --d...
增加后用sysctl -p进行生效iptables -t nat -A POSTROUTING -p tcp -s127.0.0.1 -d 11.22.33.44 --dport 5353 -j SNAT --to-source $your-eth0-ip
51CTO博客已为您找到关于iptables nat 指定ip转发的相关内容,包含IT学习相关文档代码介绍、相关教程视频课程,以及iptables nat 指定ip转发问答内容。更多iptables nat 指定ip转发相关解答可以来51CTO博客参与分享和学习,帮助广大IT技术人实现成长和进步。
CentOS 6.9下的iptables在本机用DNAT转发指定IP到内网IP无效的问题解决(127.0.0.1) CentOS 6.9下的iptables在本机用DNAT转发指定IP到内网IP无效的问题解决(127.0.0.1)的内容正在调整,暂不提供浏览,如需帮助请联系下方本站技术官微信。
iptables -t nat -A OUTPUT -p tcp -d 127.0.0.1 --dport 4242 -j DNAT --to-destination 11.22.33.44:5353 解决方法: 1、在/etc/sysctl.conf增加转发 net.ipv4.conf.eth0.route_localnet=1 然后刷新一下sysctl -p,如果不想永久可以直接用当次生效的模式:sysctl -w net.ipv4.conf.eth0.route_local...
iptables -t nat -A OUTPUT -p tcp -d 127.0.0.1 --dport 4242 -j DNAT --to-destination 11.22.33.44:5353 解决方法: 1、在/etc/sysctl.conf增加转发 net.ipv4.conf.eth0.route_localnet=1 然后刷新一下sysctl -p,如果不想永久可以直接用当次生效的模式:sysctl -w net.ipv4.conf.eth0.route_local...