#实用教程#使用firewall命令进行服务器端口转发

很简单 只需要在转发服务器上运行:

echo 1 > /proc/sys/net/ipv4/ip_forward

systemctl start firewalld.service
systemctl enable firewalld.service

firewall-cmd --permanent --add-masquerade

firewall-cmd --permanent --add-port=你要的端口/tcp
firewall-cmd --permanent --add-port=你要的端口/udp
firewall-cmd --permanent --add-forward-port=port=你要的端口:proto=tcp:toport=你要的端口:toaddr=被转发的ip
firewall-cmd --permanent --add-forward-port=port=你要的端口:proto=udp:toport=你要的端口:toaddr=被转发的ip
firewall-cmd --reload

 

2 条评论

  1. lovehc

    直接复制这一整段在centos里面运行,还是一段段复制?

    • joker

      @lovehc 答案是都可以

发表评论

您的电子邮件地址不会被公开,必填项已用*标注。

9 − 1 =

相关推荐