CentOS 7.0以上使用的是firewall,通过命令行配置实现端口转发。
(1) 开启伪装IP
firewall-cmd --permanent --add-masquerade
(2) 配置端口转发,将到达本机的12345端口的访问转发到另一台服务器的22端口。
firewall-cmd --permanent --add-forward-port=port=12345:proto=tcp:toaddr=192.168.172.131:toport=22
正文完
CentOS 7.0以上使用的是firewall,通过命令行配置实现端口转发。
(1) 开启伪装IP
firewall-cmd --permanent --add-masquerade
(2) 配置端口转发,将到达本机的12345端口的访问转发到另一台服务器的22端口。
firewall-cmd --permanent --add-forward-port=port=12345:proto=tcp:toaddr=192.168.172.131:toport=22