cbpy·11년 전·discussif combined with other data, it could show how inefficient/efficient programmers are
cbpy·11년 전·discusssince I posted this, the proxy started to have issues with youtube... I really wish Google would get split up
cbpy·11년 전·discussto fully un-Google is not easy, but sites like http://www.keyamp.com/ can help you watch Youtube videos... these iptables rules can help you block Google (there is probably more efficient ways to write those rules too)...#!/bin/sh# /etc/init.d/firewallIPT="/sbin/iptables"IPT6="/sbin/ip6tables"# Block Google$IPT -A INPUT -s 64.18.0.0/20 -j DROP$IPT -A INPUT -s 64.233.160.0/19 -j DROP$IPT -A INPUT -s 64.102.0.0/20 -j DROP$IPT -A INPUT -s 66.249.80.0/20 -j DROP$IPT -A INPUT -s 72.14.192.0/18 -j DROP$IPT -A INPUT -s 74.125.0.0/16 -j DROP$IPT -A INPUT -s 108.177.8.0/21 -j DROP$IPT -A INPUT -s 173.194.0.0/16 -j DROP$IPT -A INPUT -s 207.126.144.0/20 -j DROP$IPT -A INPUT -s 209.85.128.0/17 -j DROP$IPT -A INPUT -s 216.58.192.0/19 -j DROP$IPT -A INPUT -s 216.239.32.0/19 -j DROP$IPT -A OUTPUT -d 64.18.0.0/20 -j DROP$IPT -A OUTPUT -d 64.233.160.0/19 -j DROP$IPT -A OUTPUT -d 64.102.0.0/20 -j DROP$IPT -A OUTPUT -d 66.249.80.0/20 -j DROP$IPT -A OUTPUT -d 72.14.192.0/18 -j DROP$IPT -A OUTPUT -d 74.125.0.0/16 -j DROP$IPT -A OUTPUT -d 108.177.8.0/21 -j DROP$IPT -A OUTPUT -d 173.194.0.0/16 -j DROP$IPT -A OUTPUT -d 207.126.144.0/20 -j DROP$IPT -A OUTPUT -d 209.85.128.0/17 -j DROP$IPT -A OUTPUT -d 216.58.192.0/19 -j DROP$IPT -A OUTPUT -d 216.239.32.0/19 -j DROP$IPT6 -A INPUT -s 2001:4860:4000::/36 -j DROP$IPT6 -A INPUT -s 2404:6800:4000::/36 -j DROP$IPT6 -A INPUT -s 2607:f8b0:4000::/36 -j DROP$IPT6 -A INPUT -s 2800:3f0:4000::/36 -j DROP$IPT6 -A INPUT -s 2a00:1450:4000::/36 -j DROP$IPT6 -A INPUT -s 2c0f:fb50:4000::/36 -j DROP$IPT6 -A OUTPUT -s 2001:4860:4000::/36 -j DROP$IPT6 -A OUTPUT -s 2404:6800:4000::/36 -j DROP$IPT6 -A OUTPUT -s 2607:f8b0:4000::/36 -j DROP$IPT6 -A OUTPUT -s 2800:3f0:4000::/36 -j DROP$IPT6 -A OUTPUT -s 2a00:1450:4000::/36 -j DROP$IPT6 -A OUTPUT -s 2c0f:fb50:4000::/36 -j DROP