@BBcan177:
Thanks for reporting this… Looks like it wasn't picking up Alias type rules with "pfb_" in the Rule descriptions.
Can you edit: /usr/local/pkg/pfblockerng/pfblockerng.inc
https://github.com/pfsense/FreeBSD-ports/blob/devel/net/pfSense-pkg-pfBlockerNG/files/usr/local/pkg/pfblockerng/pfblockerng.inc#L5099
and change Line #5099
from:
if ($alias['type'] == 'urltable' && strpos($alias['name'], 'pfB_') !== FALSE && strpos($alias['descr'], '[s]') === FALSE) {
to:
[code]
if ($alias['type'] == 'urltable' &&
(strpos($alias['name'], 'pfB_') !== FALSE || strpos($alias['name'], 'pfb_') !== FALSE) &&
strpos($alias['descr'], '[s]') === FALSE) {
Please report back ... Thanks!
I am still having the same issue after changing the code [/s][/code][/s]