When I use this IP Firewall rule:
chain=forward action=accept connection-state=new in-interface=W1 out-bridge-port=DMZ
it doesn't work correctly!
When I cut "connection-state=new", then work fine !
It's BUG?
it's not a bug. with 'connection-state=new' you accept only connection establishing. next connection packets are not affected by that rule. try adding 'chain=forward action=accept connection-state=established in-interface=W1 out-bridge-port=DMZ'When I use this IP Firewall rule:
chain=forward action=accept connection-state=new in-interface=W1 out-bridge-port=DMZ
it doesn't work correctly!
When I cut "connection-state=new", then work fine !
It's BUG?
it's not a bug, it's your misunderstanding. rules above are not the same. although they work identically, in first case you may use something like this:) I try say something else )
hmm, traffic:
chain=forward action=accept connection-state=new in-interface=W1 out-bridge-port=DMZ
chain=forward action=accept connection-state=established
not same as:
chain=forward action=accept in-interface=W1 out-bridge-port=DMZ
!!! This is bug, I think so.
omg... what is '...'? either make...
chain=forward action=accept connection-state=new in-interface=W1 out-bridge-port=DMZ
...
chain=forward action=accept connection-state=established
chain=forward action=drop
firewall still block some traffic from interface W1 to Bridge port DMZ. WHY????
After I use this rule:
chain=forward action=accept in-interface=W1 out-bridge-port=DMZ
... ROS doesn't block any traffic => traffic is OK.
or post your '...' rules...
chain=forward action=accept connection-state=new in-interface=W1 out-bridge-port=DMZ
chain=forward action=accept connection-state=established
...