I’ve been struggling for weeks to get Filters and NAT working properly. I am using a RB3011 as a Router/Gateway with 1G fiber SFP WAN. I cannot get any traffic to pass to the NAT. The router has very basic configs on it at this point.
I’ve been setting up Filters and NAT’s to align with all the tutorials i’ve found and i get ZERO packets beyond the masquerade in the NAT. For some simple tests with a bananapi i’m trying to forward port 80 to an internal IP.
Looking for some direction here. Thanks
Filter:
Flags: X - disabled, I - invalid, D - dynamic
0 D ;;; special dummy rule to show fasttrack counters
chain=forward
1 ;;; defconf: fasttrack
chain=forward action=fasttrack-connection
connection-state=established,related log=no log-prefix=“”
2 ;;; defconf: accept established,related
chain=forward action=accept
connection-state=established,related log=no log-prefix=“”
3 ;;; defconf: drop invalid
chain=forward action=drop connection-state=invalid log=no
log-prefix=“”
4 ;;; defconf: drop all from WAN not DSTNATed
chain=forward action=drop connection-state=new
connection-nat-state=!dstnat in-interface=WAN log=no
log-prefix=“”
5 chain=input action=accept protocol=icmp log=no log-prefix=">
6 chain=input action=accept connection-state=established
log=no log-prefix=“”
7 chain=input action=accept connection-state=related log=no
log-prefix=“”
8 chain=input action=drop in-interface=WAN log=no
log-prefix=“”
NAT:
Flags: X - disabled, I - invalid, D - dynamic
0 ;;; defconf: masquerade
chain=srcnat action=masquerade out-interface=WAN log=no
log-prefix=“”
1 chain=dstnat action=dst-nat to-addresses=192.168.88.29
to-ports=80 protocol=tcp in-interface=WAN dst-port=80
log=no log-prefix=“”