diff options
author | Jason Fesler <jfesler@guest.gigo.com> | 2015-02-17 11:23:13 -0800 |
---|---|---|
committer | Jason Fesler <jfesler@guest.gigo.com> | 2015-02-17 11:23:13 -0800 |
commit | 24772e01ad6d1df4b7ab33a66b6596248868af94 (patch) | |
tree | bb2d345ba164c54f23f6052922245eb0d9de0ff9 | |
parent | 3c84bd7a7af7a9507957ab4724140e6b666aa546 (diff) | |
download | mtu1280d-24772e01ad6d1df4b7ab33a66b6596248868af94.tar.gz mtu1280d-24772e01ad6d1df4b7ab33a66b6596248868af94.zip |
Updated readme
-rw-r--r-- | README.md | 25 |
1 files changed, 23 insertions, 2 deletions
@@ -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 |