Advertisement
Guest User

tor2

a guest
Aug 26th, 2014
336
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. #!/bin/sh
  2. #Source : http://unix.stackexchange.com/a/62040
  3. echo "Stopping firewall and allowing everyone..."
  4.  
  5. iptables -F
  6. iptables -X
  7. iptables -t nat -F
  8. iptables -t nat -X
  9. iptables -t mangle -F
  10. iptables -t mangle -X
  11. iptables -P INPUT ACCEPT
  12. iptables -P FORWARD ACCEPT
  13. iptables -P OUTPUT ACCEPT
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement