From pfctl(8):
So in /etc/pf.conf:
However:
Am I doing something wrong?
Code:
If the anchor name is terminated with a `*' character, the -s flag will recursively print all anchors in a brace delimited block. For example the following will print the "authpf" ruleset recursively:
# pfctl -a 'authpf/*' -sr
So in /etc/pf.conf:
anchor "jails/*"
However:
Code:
# pfctl -a jails/website -f website.pf
#
# pfctl -a 'jails/website' -sr
pass in on epair1a inet proto tcp from 10.1.10.0/24 port = http to 10.1.10.0/24 flags S/SA keep state
pass out on epair1a inet proto tcp from 10.1.10.0/24 to 10.1.10.0/24 port = http flags S/SA keep state
#
# pfctl -a 'jails/*' -sr
#
Am I doing something wrong?