我的游戏服务器的iptables端口转发

时间:2019-12-31 05:07:01

标签: linux linux-kernel centos iptables portforwarding

我有2台专用服务器,我想端口转发(游戏= Minecraft),但是我无法将端口转发到目标服务器。 TCP端口:25565 UDP端口:19132,19133,25565

我已经尝试过此代码块:


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

iptables -F
iptables -t nat -F
iptables -X

iptables -t nat -A PREROUTING -p tcp --dport 25565 -j DNAT --to-destination server2:25565
iptables -t nat -A POSTROUTING -p udp -d server1 --match multiport --dport 19132,19133,25565 -j SNAT --to-source server2

0 个答案:

没有答案