blob: 4212df1ef6b5c049f4030591cd3c6b799e8902f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#test random ordered opts
body1="pass in log quick on lo0 inet proto icmp all "
body2="pass in log quick on lo0 inet proto tcp all "
o_user="user root "
o_user2="user bin "
o_group="group wheel "
o_group2="group nobody "
o_flags="flags S/SA "
o_icmpspec="icmp-type 0 code 0 "
o_tos="tos 0x08 "
o_keep="keep state "
o_fragment="fragment "
o_allowopts="allow-opts "
o_label="label blah"
o_qname="queue blah"
$body2 $o_fragment $o_keep $o_label $o_tos
$body1 $o_user $o_qname $o_tos $o_keep $o_group $o_label $o_allowopts \
$o_user2 $o_icmpspec $o_group2
$body2 $o_keep
$body2 $o_label $o_keep $o_qname $o_tos
$body1 $o_icmpspec $o_tos
$body2 $o_flags $o_allowopts
|