diff options
Diffstat (limited to 'regress/sbin/pfctl/pf4.in')
-rw-r--r-- | regress/sbin/pfctl/pf4.in | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/regress/sbin/pfctl/pf4.in b/regress/sbin/pfctl/pf4.in new file mode 100644 index 00000000000..03e1bc8f514 --- /dev/null +++ b/regress/sbin/pfctl/pf4.in @@ -0,0 +1,13 @@ +block in all +block in proto tcp all +block in proto { tcp, udp } all + +block in from any to any +block in from 10.0.0.0/8 to any +block in from ! 10.0.0.0/8 to any +block in from { 10.0.0.0/8, 172.16.0.0/12 } to any + +block in proto tcp from any port = ssh to any +block in proto tcp from any port { ssh, ftp >< 2048, != 1234, >= www } to any + +block in proto { tcp, udp } from { 10.0.0.0/8, 172.16.0.0/12 } port { ssh, ftp } to { 192.168.0.0/16, 12.34.56.78 } port { 6667, 6668 } keep state |