Hi all, I have a strange issue when I use a pf table inside an anchor. Error returned is:
pfctl: warning: table <bruteforce> already defined in anchor "pub-network/_2” Table <bruteforce> is defined in global pf.conf file. In pf.conf I have defined some anchors by interface, like this: # Group of rules for public network anchor "pub-network" on egress load anchor pub-network from "/etc/fwrules/publan.conf” Inside public.conf I have the rule that returns this warning: exposed_tcp = "(max-src-conn 10, max-src-conn-rate 15/5, overload <bruteforce> flush global)” anchor inet from !<internal_networks> to (carp1) tag inet-to-enc { pass in log (all, to pflog1) proto tcp to port $my_port keep state $exposed_tcp rdr-to $encgw01 port $my_port } How can I fix it? Or maybe am I doing some mistake?