10 lines
121 B
Bash
Executable File
10 lines
121 B
Bash
Executable File
#!/bin/sh
|
|
|
|
iptables -F
|
|
iptables -X
|
|
iptables -P INPUT ACCEPT
|
|
iptables -P OUTPUT ACCEPT
|
|
iptables -P FORWARD ACCEPT
|
|
|
|
exit 0
|