https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=262295
a52ca...@gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |a52ca...@gmail.com --- Comment #4 from a52ca...@gmail.com --- I stumbled upon this problem too since yesterday, I am on 14.2-RELEASE-p3. For me, I made changes to my ruleset so that I could more easily update it without having to reload the entire ruleset - The difference for me was that I moved some rules from an include file to anchors thus adding 4 new anchors. In addition, I modified how I generate my main pf file to ensure my anchors are loaded in the order I want. I have a table "blocked_devices" that I use to temporarily block traffic to/from specific devices on my network. I had this exact table name before, but changed it to being a persisted table. I did NOT have any other references to blocked_devices AND the table was declared prior to the anchor, so it was not a matter of ordering to my knowledge. It is strange because all of my other persist tables work fine and they're referenced the same way in anchors. Renaming the table to blocked_devices_ fixed the problem, but why? Relevant snippets: [main pf] table <blocked_devices> persist file "/usr/local/etc/walterjwhite/firewall/table/blocked_devices.generated" anchor e_02_blocked-devices load anchor e_02_blocked-devices from "/usr/local/etc/walterjwhite/firewall/anchor/external/e.02.blocked-devices" [e.02.blocked-devices file] block log (to pflog1) quick from <blocked_devices> block log (to pflog1) quick to <blocked_devices> -- You are receiving this mail because: You are the assignee for the bug.