Quote:
Originally Posted by masraum
I don't have that problem. The board loads really fast for me, and I have java for google-analytics and googlesyndication allowed in NoScript.
|
From my Pi (via a pelican giveaway no less) which acts as dhcp/dns/vpn/ssh/etc server for home -
and yes, I've created a fake TLD and FQDN for my home use - id10t.home - so my machine is darkstar.id10t.home, the tv is livingroomtv.id10t.home, etc - no hosts file needed. This blocks shiat for all devices on my home network
Code:
pi@pi:~ $ grep google /etc/bind/blacklist
zone "google-analytics.com" { type master; notify no; file "/etc/bind/null.zone.file"; };
zone "googleadservices.com" { type master; notify no; file "/etc/bind/null.zone.file"; };
zone "googlesyndication.com" { type master; notify no; file "/etc/bind/null.zone.file"; };
zone "pagead.l.google.com" { type master; notify no; file "/etc/bind/null.zone.file"; };
zone "partnerad.l.google.com" { type master; notify no; file "/etc/bind/null.zone.file"; };
zone "video-stats.video.google.com" { type master; notify no; file "/etc/bind/null.zone.file"; };
zone "wintricksbanner.googlepages.com" { type master; notify no; file "/etc/bind/null.zone.file"; };
zone "www-google-analytics.l.google.com" { type master; notify no; file "/etc/bind/null.zone.file"; };
pi@pi:~ $ cat /etc/bind/null.zone.file
$TTL 86400 ; one day
@ IN SOA noad.home. hostmaster.example.com. (
2015083001 ; serial number YYMMDDNN
28800 ; refresh 8 hours
7200 ; retry 2 hours
864000 ; expire 10 days
86400 ) ; min ttl 1 day
NS noad.home
A 192.168.1.2
@ IN A 192.168.1.2
* IN A 192.168.1.2