Re: Will this iptables script work as an ip6tables script?

2017-04-04 Thread Gustavo Lima
Remembering that the correct command is ip6tables 2017-04-04 10:13 GMT-03:00 Gustavo Lima : > 1) You must prohibit reserved external prefixes. Example: iptables -A > INPUT -s 3dde::/16 -j DROP > Among the reserved prefixes you will find: 2001:2::/48 (rfc 5156), > 2001:10::/28 (rfc

Re: Will this iptables script work as an ip6tables script?

2017-04-04 Thread Gustavo Lima
1) You must prohibit reserved external prefixes. Example: iptables -A INPUT -s 3dde::/16 -j DROP Among the reserved prefixes you will find: 2001:2::/48 (rfc 5156), 2001:10::/28 (rfc 4843), 2001:db8::/32 (rfc 3849) 2) If you want to release to the local link ips: iptables -A INPUT -s ff02::1 -j AC