Skip to content

Instantly share code, notes, and snippets.

@bugyt
Created January 28, 2016 09:38
Show Gist options
  • Save bugyt/ecdc61ca9f1f25e155ee to your computer and use it in GitHub Desktop.
Save bugyt/ecdc61ca9f1f25e155ee to your computer and use it in GitHub Desktop.
IPTABLES : Flush All Rules, Delete All Chains, and Accept All
#!/bin/bash
iptables -P INPUT ACCEPT
iptables -P FORWARD ACCEPT
iptables -P OUTPUT ACCEPT
echo "Flush All Rules, Delete All Chains, and Accept All [OK]"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment