So this is how it looks:
0 D ;;; special dummy rule to show fasttrack counters
chain=forward action=passthrough
1 ;;; defconf: accept established,related,untracked
chain=input action=accept connection-state=established,related,untracked log=no log-prefix=“Defcon: Accepted Established”
2 ;;; defconf: accept ICMP
chain=input action=accept protocol=icmp log=no log-prefix=“Ping”
3 ;;; allow pptp
chain=input action=accept protocol=tcp dst-port=1723
4 ;;; defconf: accept to local loopback (for CAPsMAN)
chain=input action=accept dst-address=127.0.0.1
5 ;;; defconf: drop invalid
chain=input action=drop connection-state=invalid log=no log-prefix=“Invalid”
6 ;;; defconf: drop all not coming from LAN
chain=input action=drop in-interface-list=!LAN log=no log-prefix=“DROP_from_WAN”
7 ;;; Printer Defcon → VLAN10
chain=forward action=accept src-address=192.168.88.249 dst-address=192.168.10.11 log=no log-prefix=“Printer 88 → 10”
8 ;;; Printer VLAN10 → Defcon
chain=forward action=accept src-address=192.168.10.11 dst-address=192.168.88.249 log=no log-prefix=“Printer 10 → 88”
9 ;;; defconf: accept in ipsec policy
chain=forward action=accept ipsec-policy=in,ipsec
10 ;;; defconf: accept out ipsec policy
chain=forward action=accept ipsec-policy=out,ipsec
11 ;;; defconf: fasttrack
chain=forward action=fasttrack-connection connection-state=established,related
12 ;;; defconf: accept established,related, untracked
chain=forward action=accept connection-state=established,related,untracked
13 ;;; defconf: drop invalid
chain=forward action=drop connection-state=invalid log=no log-prefix=“Defcon: Drop invalid”
14 ;;; defconf: drop all from WAN not DSTNATed
chain=forward action=drop connection-state=new connection-nat-state=!dstnat in-interface-list=WAN
–END–
Kindly notice that in the meantime, I’ve changed the configuration, and now the traffic I would like to setup is between VLAN 10 (192.168.10.0/24 and defcon 192.168.88.0/24). All other stuff remains as described at the beginning.
After reading what you wrote, I realized that I probably put the rule(s) in the wrong order. But kindly take a look at the above configuration export and advise how to enable traffic between those two hosts properly.