OpenBSD 3.6 /etc/pf.conf
When a table, and corresponding rule is defined using:
table <LimitedAccess> persist { 192.168.1.16, 192.168.1.17 }
block out quick on $ExtIf inet proto { tcp, udp } from <LimitedAccess>
to any port $OutIm
OR EVENblock out quick on $ExtIf inet proto { icmp, udp, tcp } from <LimitedAccess> to any
The result is both IP addresses are allowed to pass through the firewall. Can anyone comment?

