document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #!/bin/sh
  2. iptables-save -c > /etc/iptables.rules
  3. if [ -f /etc/iptables.downrules ]; then
  4.    iptables-restore < /etc/iptables.downrules
  5. fi
  6. exit 0
');