Debian - как очистить правила iptables

Материал из Wiki - Iphoster - the best ever hosting and support. 2005 - 2024
Версия от 10:14, 26 мая 2016; Admin iph (обсуждение | вклад) (Новая страница: « === Debian - как очистить правила iptables === # vi stop_iptables_debian.sh #!/bin/bash iptables -F iptables -X iptables -t nat -F ipt…»)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к:навигация, поиск


Debian - как очистить правила iptables

# vi stop_iptables_debian.sh
#!/bin/bash
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 OUTPUT ACCEPT
iptables -P FORWARD ACCEPT


# chmod a+x stop_iptables_debian.sh
# sh stop_iptables_debian.sh