Skip to content

Instantly share code, notes, and snippets.

@Hotfirenet
Created March 11, 2017 14:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Hotfirenet/0754924465450712799b755807c04d3a to your computer and use it in GitHub Desktop.
Save Hotfirenet/0754924465450712799b755807c04d3a to your computer and use it in GitHub Desktop.
Suppression des règles de firewall
#!/usr/bin/env 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 FORWARD ACCEPT
iptables -P OUTPUT ACCEPT
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment