Skip to content

Instantly share code, notes, and snippets.

@nicksherron
Created January 27, 2019 05:06
Show Gist options
  • Select an option

  • Save nicksherron/d32b207c5f2c30e7fabd1c99a4d6515a to your computer and use it in GitHub Desktop.

Select an option

Save nicksherron/d32b207c5f2c30e7fabd1c99a4d6515a to your computer and use it in GitHub Desktop.
andrew's oracle box fix
#sudo su
#!/bin/sh
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
exit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment