Hello,
Could someone please have a look at the firewall filters and NAT configurations below? Port forwarding for Plex was working using a Ubiquiti router but now that I have changed to a Mikrotik X86 router, I’m unable to port forward to the Plex server. Below are the results of /ip firewall filter print and /ip firewall nat print. I would appreciate your assistance.
[master@MikroTik] > 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 ;;; default configuration
chain=input action=accept connection-state=established,related
2 ;;; default configuration
chain=input action=accept connection-state=established,related
3 chain=input action=accept src-address-list=allowed_to_router
4 X chain=input action=accept protocol=icmp log=no log-prefix=“”
5 ;;; Wireguard VPN
chain=input action=accept protocol=udp dst-port=13231 log=yes log-prefix=“WIREGUARD”
6 chain=input action=drop log=yes
7 ;;; FastTrack
chain=forward action=fasttrack-connection hw-offload=yes connection-state=established,related
8 ;;; Established, Related
chain=forward action=accept connection-state=established,related
9 ;;; Drop invalid
chain=forward action=drop connection-state=invalid log=yes log-prefix=“invalid”
10 ;;; Drop incoming packets that are not NATted
chain=forward action=drop connection-state=new connection-nat-state=!dstnat in-interface=ether1 log=yes log-prefix=“!NAT”
11 ;;; Drop incoming from internet which is not public IP
chain=forward action=drop src-address-list=not_in_internet in-interface=ether1 log=yes log-prefix=“!public”
[master@MikroTik] > ip firewall nat print
Flags: X - disabled, I - invalid; D - dynamic
0 chain=srcnat action=masquerade out-interface-list=WAN
1 ;;; Plex port forwarding
chain=dstnat action=dst-nat to-addresses=10.10.10.16 to-ports=32400 protocol=tcp in-interface=ether1 dst-port=32450 log=yes log-prefix=“”
[master@MikroTik] >