summaryrefslogtreecommitdiffstats
path: root/etc/xtables.conf
diff options
context:
space:
mode:
Diffstat (limited to 'etc/xtables.conf')
-rw-r--r--etc/xtables.conf24
1 files changed, 24 insertions, 0 deletions
diff --git a/etc/xtables.conf b/etc/xtables.conf
new file mode 100644
index 00000000..00b5df4f
--- /dev/null
+++ b/etc/xtables.conf
@@ -0,0 +1,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
+}