Weird interaction between pfSense and MikroTik router
-
You are seeing the result of asymmetric routing:
https://docs.netgate.com/pfsense/en/latest/firewall/troubleshooting-blocked-log-entries-due-to-asymmetric-routing.htmlYou can try the 'Bypass firewall rules for traffic on the same interface' option suggested there. It would be better to remove the asymmetry though if you can, connect the MikroTik to pfSense via a different interface. You may be able to use a VLAN on the LAN port for example.
Steve
-
@JKnott I'm not sure you're responding to the post you think you're responding to, this issue has nothing to do with DHCP, but thanks anyway.
-
@stephenw10 Thanks for the suggestions, I'll have a go and see what happens.
But based on that doco I'd say you're probably right, connections being dropped from the table after 30 seconds would make sense given the symptoms I'm seeing (though the timing is a bit off).
-
The actual timing depends on a number of things there. I'd say it's almost certain that's what you're hitting though.
Steve
-
@stephenw10 Yeah, I'd expect as much, I'll poke at it over the next few days and see how it goes. Thanks
-
@jrandombob said in Weird interaction between pfSense and MikroTik router:
@JKnott I'm not sure you're responding to the post you think you're responding to, this issue has nothing to do with DHCP, but thanks anyway.
You said it works with static IP, but not DHCP? Once a device has an address via DHCP, there is no difference than having a static IP, for the duration of the lease. If it fails after 50 s with DHCP, then that would indicate a problem with DHCP. You mentioned the wireless devices are on the other side of the MikroTik router from the LAN? Is there a DHCP server there? If not, you'll get a failed connection after several seconds.
-
Added a Floating rule and a LAN rule with sloppy state set per the doco, works like a charm.
At some point I'll rearrange my network to hang the wireless off a different interface on pfSense, but for the moment this does what I need it to.
Thanks @stephenw10 for the pointer.
-
Hi @jrandombob, can you explain a bit more the solution you found?
I don't understand what it's the floating rule and the sloppy state.
Regards, -
@NetVicious Under Firewall->Rules you'll find a "Floating" tab along with all your other interfaces. You can define rules here which aren't tied to a specific interface (not 100% correct explanation but good enough for these purposes).
As for "sloppy state", when you're configuring the firewall rules, there's a "State type" option under "Advanced Options" one of the options there is "Sloppy", basically setting that makes the state matching for established connections related to the rule less strict.
The "Manual Fix" section on this page provides more or less step-by-step instructions;
https://docs.netgate.com/pfsense/en/latest/firewall/troubleshooting-blocked-log-entries-due-to-asymmetric-routing.html -
Thanks for the explanation, it's not my exact scenario but will help others.