Iptables 转发端口;Forwarding Ports Iptables

2024/07/25

Forwarding Ports Iptables

启用 IP 转发:确保 Linux 主机上的 IP 转发功能已启用

# vim /etc/sysctl.conf

net.ipv4.ip_forward=1

# 运行以下命令以使更改生效
sysctl -p

以局域网内 windows机器的 3389 RDP 协议为例子

iptables -t nat -A PREROUTING -p tcp --dport 3389 -j DNAT --to-destination <Windows_IP>:3389
iptables -t nat -A POSTROUTING -j MASQUERADE

保存规则

iptables-save > /etc/iptables/rules.v4