Skip to content

Instantly share code, notes, and snippets.

@Fabricio20
Created January 27, 2017 05:08
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 Fabricio20/e4dc5f6b476357dc8da851858ad1d103 to your computer and use it in GitHub Desktop.
Save Fabricio20/e4dc5f6b476357dc8da851858ad1d103 to your computer and use it in GitHub Desktop.
UFW "fix" for anything, used over ssh
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
sudo ufw disable
sudo ufw reset
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
sudo ufw default deny incoming
sudo ufw default deny outbound
sudo ufw allow 22/tcp
sudo ufw enable
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment