diff options
-rw-r--r-- | rules/11-q3k-forwards | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/rules/11-q3k-forwards b/rules/11-q3k-forwards new file mode 100644 index 0000000..a1e8ee7 --- /dev/null +++ b/rules/11-q3k-forwards @@ -0,0 +1,8 @@ +#!/bin/bash +rules() { + # xpsp3 rdp + # 16283 -> 10.24.17.1:3389 + iptables -t nat $flag PREROUTING -i ${IF_WAN} -d ${HOST_KASHA_WAN} -p tcp --dport 16283 -j DNAT --to-destination 10.24.17.1 --to-port 3389 + iptanles -t filter $flag FORWARD -i ${IF_WAN} -d 10.24.17.1 -p tcp --dport 3389 -j ACCEPT + +} |