Browser waiting for connection forever

1

I'm trying to fix a Asus Notebook with Windows 10 installed. The problem is that no browser connects to internet. The browser gets stuck on "Waiting for {website}" and just waits for the connection forever or says "{website} took to long to answer". I have the same issue in both Chrome and Edge.

I am connected to the internet with wifi, and the connection is working. I can confirm that by Spotify working and playing music online. Any ideas on what might be wrong?

Related question Connected to wifi but browser doesn't work

Mala

Posted 2018-02-11T11:54:05.263

Reputation: 11

Answers

1

Any ideas on what might be wrong?

Try completely reinitialising all network states.

Run the following commands in an elevated cmd shell:

  • Reset WINSOCK entries to installation defaults:

    netsh winsock reset catalog

  • Reset TCP/IP stack to installation defaults:

    netsh int ip reset reset.log

  • Reset Firewall to installation defaults:

    netsh advfirewall reset

  • Flush DNS resolver cache:

    ipconfig /flushdns

  • Renew DNS client registration and refresh DHCP leases:

    ipconfig /registerdns

  • Flush routing table (reboot required):

    route /f

DavidPostill

Posted 2018-02-11T11:54:05.263

Reputation: 118 938