Debian - как очистить правила iptables: различия между версиями

Материал из Wiki - Iphoster - the best ever hosting and support. 2005 - 2024
Перейти к:навигация, поиск
(Новая страница: « === Debian - как очистить правила iptables === # vi stop_iptables_debian.sh #!/bin/bash iptables -F iptables -X iptables -t nat -F ipt…»)
 
 
Строка 19: Строка 19:
 
  # chmod a+x stop_iptables_debian.sh
 
  # chmod a+x stop_iptables_debian.sh
 
  # sh stop_iptables_debian.sh
 
  # sh stop_iptables_debian.sh
 +
 +
 +
[http://wiki.iphoster.ru/files/stop_iptables_debian stop_iptables_debian]

Текущая версия на 09:07, 17 июня 2016


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


stop_iptables_debian