Hi,
I’ve been a happy user of RouterOS 3.10 for a few months now. My setup consists of two LANs connected through a PPP tunnel between a Linux machine and a Mikrotik router. Tunnelling is handled by OpenVPN in bridge mode.
Lately I decided to restrict communications between the LANs based on source IP address. As soon as the tunnel is formed, RouterOS creates two dynamic filter rules according to the following PPP profile.
/ppp profile print
1 name=“ovpn-test” local-address=192.168.0.x bridge=bridge1 use-compression=default use-vj-compression=default use-encryption=required only-one=default change-tcp-mss=default incoming-filter=ovpn-in outgoing-filter=ovpn-out
/ip firewall filter print dynamic
0 D chain=ppp action=jump jump-target=ovpn-in in-interface=
1 D chain=ppp action=jump jump-target=ovpn-out out-interface=
Unfortunately that’s incorrect, because ovpn-test is a bridge port. The rules should use in-bridge-port and out-bridge-port keywords instead. Is there anything simple I overlooked?
Best regards