summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md25
1 files changed, 23 insertions, 2 deletions
diff --git a/README.md b/README.md
index e89ce24..e5915b0 100644
--- a/README.md
+++ b/README.md
@@ -31,14 +31,35 @@ REQUIREMENTS
RedHat:
* Please send me confirmed required packages. -- jfesler@gigo.com
* libnetfilter queue "developer" package
- * ip6tables
+ * ip6tables - and a way to automatically load ip6tables on startup
Ubuntu:
* build-essential
* libnetfilter-queue-dev
- * ip6tables
+ * ip6tables - and a way to automatically load ip6tables on startup
+IPTABLES / IP6TABLES
+--------------------
+
+For reference, this is what jfesler does:
+
+/etc/rc.local:
+```
+iptables-restore /etc/iptables/rules.v4
+ip6tables-restore /etc/iptables/rules.v6
+```
+
+/etc/iptables/rules.v6 (simplified version, only includes mtu1280 rule)
+```
+# Generated by ip6tables-save v1.4.21 on Tue Feb 17 10:54:23 2015
+*filter
+:INPUT ACCEPT [0:0]
+:FORWARD ACCEPT [0:0]
+:OUTPUT ACCEPT [0:0]
+-A INPUT -d 2001:470:1f04:d63::2/128 -m length --length 1281:65535 -j NFQUEUE --queue-num 1280
+COMMIT
+```
LICENSE