diff options
author | Daniel Hartmeier <dhartmei@cvs.openbsd.org> | 2001-08-19 16:31:07 +0000 |
---|---|---|
committer | Daniel Hartmeier <dhartmei@cvs.openbsd.org> | 2001-08-19 16:31:07 +0000 |
commit | d91329ab04ffd6674782980e01d0b465d163c355 (patch) | |
tree | da57791969d9e5221cbfa6582e5f25ee92526c76 /regress/sbin/pfctl/pf4.in | |
parent | 41c454051895b81c6262a6f5e7bb5d0fa7359e29 (diff) |
Regress test for parameter list expansion syntax.
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 |