Запустите следующее. Он вставит правило в верхнюю часть ваших iptables и разрешит весь трафик, если впоследствии не будет обработано другое правило.
iptables -I INPUT -j ACCEPT
Вы также можете сбросить все настройки iptables следующим образом:
iptables -F
iptables -X
iptables -t nat -F
iptables -t nat -X
iptables -t mangle -F
iptables -t mangle -X
iptables -P INPUT ACCEPT
iptables -P FORWARD ACCEPT
iptables -P OUTPUT ACCEPT
Если вы очистите его, вы можете запустить что-то вроде:
iptables -A INPUT -i lo -j ACCEPT -m comment --comment "Allow all loopback traffic"
iptables -A INPUT ! -i lo -d 127.0.0.0/8 -j REJECT -m comment --comment "Drop all traffic to 127 that doesn't use lo"
iptables -A OUTPUT -j ACCEPT -m comment --comment "Accept all outgoing"
iptables -A INPUT -j ACCEPT -m comment --comment "Accept all incoming"
iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT -m comment --comment "Allow all incoming on established connections"
iptables -A INPUT -j REJECT -m comment --comment "Reject all incoming"
iptables -A FORWARD -j REJECT -m comment --comment "Reject all forwarded"
Если вы хотите повысить безопасность своего трафика, не используйте правило «принять все входящие» или удалите его с помощью «iptables -D INPUT -j ACCEPT -m comment --comment« Принять все входящие »» и добавьте еще конкретные правила, такие как:
iptables -I INPUT -p tcp --dport 80 -j ACCEPT -m comment --comment "Allow HTTP"
iptables -I INPUT -p tcp --dport 443 -j ACCEPT -m comment --comment "Allow HTTPS"
iptables -I INPUT -p tcp -m state --state NEW --dport 22 -j ACCEPT -m comment --comment "Allow SSH"
iptables -I INPUT -p tcp --dport 8071:8079 -j ACCEPT -m comment --comment "Allow torrents"
ПРИМЕЧАНИЕ. Они должны быть выше двух правил отклонения внизу, поэтому используйте I, чтобы вставить их сверху. Или, если вы похожи на меня, используйте «iptables -nL --line-numbers», чтобы получить номера строк, а затем «iptables -I INPUT ...», чтобы вставить правило с определенным номером строки.
Наконец, сохраните вашу работу с:
iptables-save > /etc/network/iptables.rules #Or wherever your iptables.rules file is