Can't browse to any Google sites from home network, but works fine on others

2

1

I have a very strange issue and I'm completely lost as to what it could be. I've worked tech support before, so I know that this is going to sound completely crazy.

I have a laptop that dual-boots Windows 7 and Fedora 17. When I am home and using the Windows partition on my laptop I am able to access all Google sites, but when I am using the Fedora partition I can't access any Google sites. No Gmail, no Docs, no Blogger, not even advertisements sponsored by Google on other websites load. Every other website loads fine. I've verified this happens in both Chrome and Firefox.

Here's where it gets weird. If I take the laptop to work and connect it to the network there everything works fine.

Here's where it gets even weirder:

  • I can ping google.com just fine, no packet loss.
  • I can telnet successfully to google.com port 80.
  • I ran 'wget -v http://google.com' and got a successful return.

My home ISP is Clear Internet (boo!) and their tech support has already dismissed the issue because they "do not support computers with multiple OS's" (which is BS because they couldn't list one single reason why that wouldn't work or why they don't support it).

Any help/ideas of any kind would be greatly appreciated!

jebar8

Posted 2012-09-27T06:01:00.303

Reputation: 121

1Can you try on fedora with a different account? – Karthik T – 2012-09-27T07:34:19.740

I face same issue at my college, when I altered some proxy settings I don't know why, but I worked magically. (I understand that theoretically this does not sounds correct) – Ankit – 2012-09-27T13:37:00.550

@Lamb Were you only having a problem with Google (or another single domain) or was it with all websites? – jebar8 – 2012-09-27T14:15:46.570

it was just all google websites, exactly same as the problem. Other domains loaded perfectly. – Ankit – 2012-09-27T14:17:43.290

@Lamb do you remember what you changed? – jebar8 – 2012-09-27T14:26:34.103

I just tried all proxy setting options available in Firefox Connection Setting, i.e. No Proxy, Auto Detect.... Try to get the proxy settings you are using in Windows and apply same settings in Fedora. – Ankit – 2012-09-27T15:06:56.740

We have the same issue with Fedora 17 and Ubuntu 12. One thing we noticed that problem arises generally when we login into Google. If you clear caches of browser, then it works. – metdos – 2012-11-07T16:30:01.553

Answers

1

If the same behaviour happen in browser safe mode then check

/etc/HOSTS, /etc/hosts.allow, /etc/hosts.deny files:

The HOSTS file must contain these lines (based on default Open Suse Linux):

127.0.0.1  localhost

::1        localhost ipv6-localhost ipv6-loopback

may be these ones:

fe00::0   ipv6-localnet

ff02::1   ipv6-allnodes

ff02::2   ipv6-allrouters

ff02::3   ipv6-allhosts

hosts.deny only this line:

http-rman : ALL EXCEPT LOCAL

hosts-allow

By default : no lines except comments

climenole

Posted 2012-09-27T06:01:00.303

Reputation: 3 180

I will do this when I get a chance, but based on my understanding if it was a host file issue then it would be a problem when connected to other networks as well, right? – jebar8 – 2012-09-27T14:12:49.647

The HOSTS file may be used to block connections to specific Web sites (normally bad sites...). But if you have a line such as 127.0.0.1 www.google.com in the HOSTS file no connection is possible with this Google site for example. That's why I ask you to verify if there's some unusual lines in the HOSTS... http://en.wikipedia.org/wiki/Hosts_%28file%29 or http://www.safer-networking.org/faq/hosts-file/

– climenole – 2012-09-28T02:08:07.487