iptables-http-cloudflare 712 B

12345678910111213141516171819202122232425
  1. #!/bin/bash
  2. # Clear rules
  3. /usr/local/bin/iptables-http-clear
  4. # Download IP list to temp file
  5. /usr/bin/wget "https://www.cloudflare.com/ips-v4" -O /tmp/ipslist.txt
  6. # Deny all requests to port 80 from all
  7. /sbin/iptables -I INPUT -p tcp -s 0.0.0.0/0 --dport 80 -j REJECT --reject-with tcp-reset
  8. # Allow requests from www.cloudflare.com
  9. while read ip; do
  10. if [ "$ip" != "" ]; then
  11. /sbin/iptables -I INPUT -p tcp -s $ip --dport 80 -j ACCEPT
  12. fi
  13. done < /tmp/ipslist.txt
  14. # Allow from our servers
  15. # /sbin/iptables -I INPUT -p tcp -s 127.0.0.1 --dport 80 -j ACCEPT
  16. # /sbin/iptables -I INPUT -p tcp -s 127.0.0.2 --dport 80 -j ACCEPT
  17. # Where "127.0.0.1" is our server IP
  18. # Remove temp file
  19. /bin/rm /tmp/ipslist.txt