summaryrefslogtreecommitdiffstats
path: root/etc/xtables.conf
blob: 00b5df4f5209b8044f01548fe27d020fa4d0f948 (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
table raw prio -300 {
	chain PREROUTING hook NF_INET_PRE_ROUTING
	chain OUTPUT hook NF_INET_LOCAL_OUT
}

table mangle prio -150 {
	chain PREROUTING hook NF_INET_PRE_ROUTING
	chain INPUT hook NF_INET_LOCAL_IN
	chain FORWARD hook NF_INET_FORWARD
	chain OUTPUT hook NF_INET_LOCAL_OUT
	chain POSTROUTING hook NF_INET_POST_ROUTING
}

table filter prio 0 {
	chain INPUT hook NF_INET_LOCAL_IN
	chain FORWARD hook NF_INET_FORWARD
	chain OUTPUT hook NF_INET_LOCAL_OUT
}

table security prio 150 {
	chain INPUT hook NF_INET_LOCAL_IN
	chain FORWARD hook NF_INET_FORWARD
	chain OUTPUT hook NF_INET_LOCAL_OUT
}