blob: 128a0448639f10838d525e9f3c06a9731c95fe9e (
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
25
26
|
#scrub
scrub all
#scrub in
#scrub out
scrub in all
scrub from any to any
#block
#block return
#block return-rst proto tcp
#pass
#pass in
#pass out
pass all
block in all
block out all
block from any to any
pass in from any to any
pass out from any to any
#block on lo0
pass on lo0 all
block on lo0 from any to any
#pass proto tcp flags S/SA
#pass proto udp keep state
pass in proto udp all keep state
pass out proto udp from any to any keep state
pass out on lo0 proto tcp from any to any port 25 keep state
|