This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # IPv6 | |
| ## | |
| ## set default policies to let everything in | |
| ip6tables --policy INPUT ACCEPT; | |
| ip6tables --policy OUTPUT ACCEPT; | |
| ip6tables --policy FORWARD ACCEPT; | |
| ## | |
| ## start fresh |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Generated by iptables-save v1.4.7 on Thu Jan 9 11:05:53 2014 | |
| *filter | |
| :INPUT DROP [0:0] | |
| :FORWARD DROP [0:0] | |
| :OUTPUT DROP [0:0] | |
| -A INPUT -m state --state ESTABLISHED -j ACCEPT | |
| -A INPUT -i lo -j ACCEPT | |
| -A INPUT -p tcp -m tcp --sport 513:65535 --dport 22 -m state --state NEW,ESTABLISHED -j ACCEPT | |
| -A INPUT -p tcp -m state --state NEW -m tcp --dport 32400 -j ACCEPT | |
| -A INPUT -p udp -m state --state NEW -m udp --dport 32400 -j ACCEPT |