Roman Bogachev
VMware Specialist | Drone Pilot | Traveler
Сброс правил iptables + bash скрипт
Создаем пустой файл
После того как файл будет создан, откроем и добавим следующие строки:
1 2 3 4 5 6 7 8 9 10 11 12
| #!/bin/sh echo "Сброс правил iptables" sleep 1 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
|
Теперь нужно сделать этот файл исполняемым
1
| chmod +x iptables_clear.sh
|
Запускаем
Правила IPtables сброшены!