
Code: Select all
[admin@XXXXX] /ip firewall nat> print
Flags: X - disabled, I - invalid, D - dynamic
0 chain=srcnat action=masquerade out-interface=ether1-WAN-1 log=no
log-prefix=""
1 ;;; Windows Server RDP TCP
chain=dstnat action=dst-nat to-addresses=192.168.0.202 to-ports=3389
protocol=tcp dst-address=107.x.x.x in-interface=ether1-WAN-1
dst-port=3389 log=no log-prefix=""
2 ;;; Windows Server RDP UDP
chain=dstnat action=dst-nat to-addresses=192.168.0.202 to-ports=3389
protocol=udp dst-address=107.x.x.x in-interface=ether1-WAN-1
dst-port=3389 log=no log-prefix=""
3 ;;; Windows Server GameSvrs 1 TCP
chain=dstnat action=dst-nat to-addresses=192.168.0.202 to-ports=6001-9999
protocol=tcp dst-address=107.x.x.x in-interface=ether1-WAN-1
dst-port=6001-9999 log=no log-prefix=""
4 ;;; Windows Server GameSvrs 1 UDP
chain=dstnat action=dst-nat to-addresses=192.168.0.202 to-ports=6001-9999
protocol=udp dst-address=107.x.x.x in-interface=ether1-WAN-1
dst-port=6001-9999 log=no log-prefix=""
5 ;;; Windows Server GameSvrs 2 TCP
chain=dstnat action=dst-nat to-addresses=192.168.0.202
to-ports=25000-50000 protocol=tcp dst-address=107.x.x.x
in-interface=ether1-WAN-1 dst-port=25000-50000 log=no log-prefix=""
6 ;;; Windows Server GameSvrs 2 UDP
chain=dstnat action=dst-nat to-addresses=192.168.0.202
to-ports=25000-50000 protocol=udp dst-address=107.x.x.x
in-interface=ether1-WAN-1 dst-port=25000-50000 log=no log-prefix=""
7 ;;; Linux Server Lower Web TCP
chain=dstnat action=dst-nat to-addresses=192.168.0.250 to-ports=80-3300
protocol=tcp dst-address=107.x.x.x in-interface=ether1-WAN-1
dst-port=80-3300 log=no log-prefix=""
8 ;;; Linux Server Lower Web UDP
chain=dstnat action=dst-nat to-addresses=192.168.0.250 to-ports=80-3300
protocol=udp dst-address=107.x.x.x in-interface=ether1-WAN-1
dst-port=80-3300 log=no log-prefix=""
9 ;;; Linux Server Upper Web Web TCP
chain=dstnat action=dst-nat to-addresses=192.168.0.250 to-ports=3400-6000
protocol=tcp dst-address=107.x.x.x in-interface=ether1-WAN-1
dst-port=3400-6000 log=no log-prefix=""
10 ;;; Linux Server Upper Web Web UDP
chain=dstnat action=dst-nat to-addresses=192.168.0.250 to-ports=3400-6000
protocol=udp dst-address=107.x.x.x in-interface=ether1-WAN-1
dst-port=3400-6000 log=no log-prefix=""
11 ;;; Linux Server WebMin TCP
chain=dstnat action=dst-nat to-addresses=192.168.0.250
to-ports=10000-20000 protocol=tcp dst-address=107.x.x.x
in-interface=ether1-WAN-1 dst-port=10000-20000 log=no log-prefix=""
12 ;;; Linux Server WebMin UDP
chain=dstnat action=dst-nat to-addresses=192.168.0.250
to-ports=10000-20000 protocol=udp dst-address=107.x.x.x
in-interface=ether1-WAN-1 dst-port=10000-20000 log=no log-prefix=""
13 ;;; Joe Dirt RDP TCP
chain=dstnat action=dst-nat to-addresses=192.168.0.230 to-ports=3390
protocol=tcp dst-address=107.x.x.x in-interface=ether1-WAN-1
dst-port=3390 log=no log-prefix=""
14 ;;; Joe Dirt Games TCP
chain=dstnat action=dst-nat to-addresses=192.168.0.230
to-ports=24100-24299 protocol=tcp dst-address=107.x.x.x
in-interface=ether1-WAN-1 dst-port=24100-24299 log=no log-prefix=""
15 ;;; Joe Dirt RDP UDP
chain=dstnat action=dst-nat to-addresses=192.168.0.230 to-ports=3390
protocol=udp dst-address=107.x.x.x in-interface=ether1-WAN-1
dst-port=3390 log=no log-prefix=""
16 ;;; Joe Dirt Games UDP
chain=dstnat action=dst-nat to-addresses=192.168.0.230
to-ports=24100-24299 protocol=udp dst-address=107.x.x.x
in-interface=ether1-WAN-1 dst-port=24100-24299 log=no log-prefix=""
Code: Select all
[admin@XXXXX] /ip firewall filter> print
Flags: X - disabled, I - invalid, D - dynamic
0 D ;;; special dummy rule to show fasttrack counters
chain=forward action=passthrough
1 chain=forward action=fasttrack-connection
connection-state=established,related log=no log-prefix=""
2 ;;; Allow Existing Connections
chain=forward action=accept connection-state=established,related log=no
log-prefix=""
3 ;;; Allow Outbound
chain=forward action=accept src-address=192.168.0.0/16 log=no
log-prefix=""
4 ;;; Allow WindowsServer
chain=forward action=accept protocol=udp
dst-port=3389,6001-9999,25000-50000 log=no log-prefix=""
5 ;;; Allow WindowsServer
chain=forward action=accept protocol=tcp
dst-port=3389,6001-9999,25000-50000 log=no log-prefix=""
6 ;;; Allow JoeDirt Server
chain=forward action=accept protocol=tcp dst-port=3390,24100-24299 log=no
log-prefix=""
7 ;;; Allow JoeDirt Server
chain=forward action=accept protocol=udp dst-port=3390,24100-24299 log=no
log-prefix=""
8 ;;; Allow LinuxServer
chain=forward action=accept protocol=tcp
dst-port=2-3300,3400-6000,10000-20000 log=no log-prefix=""
9 ;;; Allow LinuxServer
chain=forward action=accept protocol=udp
dst-port=2-3300,3400-6000,10000-20000 log=no log-prefix=""