From 888c2f30909bfd3d9c519a894e2a9cb6dce21750 Mon Sep 17 00:00:00 2001 From: Robert Gerus Date: Sat, 30 Aug 2014 11:44:50 +0200 Subject: [PATCH] Forward udp for minecraft query protocol --- rules/10-ar | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/rules/10-ar b/rules/10-ar index 85afbf8..a12ebb4 100644 --- a/rules/10-ar +++ b/rules/10-ar @@ -1,8 +1,13 @@ #!/bin/bash rules() { iptables --table nat $append PREROUTING -p tcp --dport 2220 -j DNAT --to-destination 10.24.20.20:22 + # minecraft iptables --table nat $flag PREROUTING -p tcp --dport 25566 -j DNAT --to-destination 10.24.20.100:25566 iptables --table nat $flag PREROUTING -p tcp --dport 25567 -j DNAT --to-destination 10.24.20.100:25567 + # minecraft queries + iptables --table nat $flag PREROUTING -p udp --dport 25566 -j DNAT --to-destination 10.24.20.100:25566 + iptables --table nat $flag PREROUTING -p udp --dport 25567 -j DNAT --to-destination 10.24.20.100:25567 + # amanojaku ssh iptables --table nat $flag PREROUTING -p tcp --dport 10022 -j DNAT --to-destination 10.24.20.100:22 iptables --table nat $flag PREROUTING -p tcp --dport 51413 -j DNAT --to-destination 10.24.20.100:51413 }