Oooohh… Den ganzen Tag habe ich heute schon Probleme auf Facebook zu kommen. Immerzu habe ich eine ‚Zeitüberschreitung‘. Über Anonymisier kann ich die Seite allerdings weiterhin aufrufen, – aber dann fehlt JavaScript.:
... Javascript is disabled on your browser. Please enable JavaScript or upgrade to a Javascript-capable browser to use Facebook. Alternativly, you can access the mobile version of Facebook here. ... |
Mit anderen Webseiten ist mir bisher kein Problem aufgefallen. Offensichtlich scheint die Facebook-Schwäche eher an meinem Provider (UMTS via E-Plus) zu liegen, – denn auch anpingen lassen sich die Facebook-Hosts nicht mehr. Womöglich liegt es ja nicht an mir, sondern E-Plus und die Jungs von Facebook mögen sich nur nicht mehr??:
~# traceroute -I www.facebook.com traceroute to www.facebook.com (66.220.156.18), 30 hops max, 40 byte packets 1 * * * 2 * * * 3 * * * 4 * * * 5 * * * 6 * * * 7 * * * 8 * * * 9 * * * 10 *^C ~# traceroute -I www.facebook.de traceroute to www.facebook.de (69.63.190.22), 30 hops max, 40 byte packets 1 * * * ... 12 * *^C ~# traceroute -I facebook.com traceroute to facebook.com (69.63.189.16), 30 hops max, 40 byte packets 1 * * * ... 9 * *^C ~# traceroute -I facebook.de traceroute to facebook.de (69.63.181.11), 30 hops max, 40 byte packets 1 * * * ... 7 * * *^C ~# |
Auch die Facebook-Kurzlinkadressen a’la http://fb.me/… klappen nicht. – Das macht aber womöglich auch Sinn?!
Zwischendurch versuchte ich es auch mit https://www.facebook.com/ , aber auch das klappte nicht.
Und auch ein Test mit hping brachte nicht wirklich bessere Ergebnisse:
~# hping3 -T -t 1 -S -p 80 www.facebook.com HPING www.facebook.com (ppp0 69.63.189.31): S set, 40 headers + 0 data bytes ^C --- www.facebook.com hping statistic --- 687 packets transmitted, 0 packets received, 100% packet loss round-trip min/avg/max = 0.0/0.0/0.0 ms ~# |
Erst als ich es dann über einen einen freien Proxy versucht hatte, klappte das Surfen bei Facebook wieder. Gefunden hatte ich: 88.202.124.121:8080
Damit ich nur dann auf den Proxy zugreifen, wenn ich FaceBook und Co aufrufe, habe ich mir eine proxy2.pac gebaut und entsprechend angepasst:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | function FindProxyForURL(url, host) { lurl = url.toLowerCase(); lhost = host.toLowerCase(); if ( dnsDomainIs(lhost, ".aol.com") || dnsDomainIs(lhost, ".facebook.com") || dnsDomainIs(lhost, ".fbcdn.net") || dnsDomainIs(lhost, ".fb.me") || dnsDomainIs(lhost, ".facebook.de") ) { alert("Proxy Zugriff"); return "PROXY 88.202.124.121:8080; PROXY 203.113.122.250:3128"; } else { return "DIRECT"; }; }; |
Hinterlasse einen Kommentar