Networking – wifi working, ping is also fine but no internet connection in browser

dnsinternetnetworkingpingwireless-networking

I am new to stackoverflow. I recently encounterd a problem in which ping works fine but the internet is not working iin the browser. Please Please help me out.
The output of ipconfig /all looks like:

Windows IP Configuration
Host Name . . . . . . . . . . . . : arpita
Primary Dns Suffix  . . . . . . . :
Node Type . . . . . . . . . . . . : Mixed
IP Routing Enabled. . . . . . . . : No
WINS Proxy Enabled. . . . . . . . : No
DNS Suffix Search List. . . . . . : browserinfo.org

Wireless LAN adapter Local Area Connection* 2:

Media State . . . . . . . . . . . : Media disconnected
Connection-specific DNS Suffix  . :
Description . . . . . . . . . . . : Microsoft Wi-Fi Direct Virtual  Adapter
Physical Address. . . . . . . . . : B0-10-41-D4-60-07
DHCP Enabled. . . . . . . . . . . : Yes
Autoconfiguration Enabled . . . . : Yes

Ethernet adapter Ethernet:

Connection-specific DNS Suffix  . :
Description . . . . . . . . . . . : Realtek PCIe FE Family Controller
Physical Address. . . . . . . . . : 14-58-D0-C5-78-D2
DHCP Enabled. . . . . . . . . . . : Yes
Autoconfiguration Enabled . . . . : Yes
Link-local IPv6 Address . . . . . : fe80::951f:3872:2052:7eb2%4(Preferred)
IPv4 Address. . . . . . . . . . . : 10.8.0.108(Preferred)
Subnet Mask . . . . . . . . . . . : 255.255.248.0
Lease Obtained. . . . . . . . . . : 16 September 2017 03:02:48 PM
Lease Expires . . . . . . . . . . : 16 September 2017 05:02:48 PM
Default Gateway . . . . . . . . . : 10.8.1.1
DHCP Server . . . . . . . . . . . : 10.8.7.254
DHCPv6 IAID . . . . . . . . . . . : 152328400
DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-1B-88-EA-C8-14-58-D0-C5-78-D2

DNS Servers . . . . . . . . . . . : 10.1.1.11
NetBIOS over Tcpip. . . . . . . . : Enabled

Wireless LAN adapter Wi-Fi:

Media State . . . . . . . . . . . : Media disconnected
Connection-specific DNS Suffix  . : domain.name
Description . . . . . . . . . . . : Ralink RT3290 802.11bgn Wi-Fi Adapter
Physical Address. . . . . . . . . : B0-10-41-D4-60-05
DHCP Enabled. . . . . . . . . . . : Yes
Autoconfiguration Enabled . . . . : Yes

The output of ping localhost is:

Pinging arpita [::1] with 32 bytes of data:
Reply from ::1: time<1ms
Reply from ::1: time<1ms
Reply from ::1: time<1ms
Reply from ::1: time<1ms

Ping statistics for ::1:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms

Please help me output. I have tried netsh winsock reset catalog
The output of netsh int ip reset reset.log is :

`Resetting Interface, OK!
 Resetting , failed.
 Access is denied.

 Resetting , OK!
 Restart the computer to complete this action.`

I have also tried netsh advfirewell ipconfig /flushdns ipconfig /registerdns rout /f without any luck. Please, Please help me out. It's really frustating without lan.

Edit: I am using the Intranet of College. Other friends of mine also can't ping 8.8.8.8 but can ping the proxy servers just like me. i somehow feel that DNS is not an issue. When I open the browser it asks for "Proxy Credentials" and tries to get connected(blue circle rotating) but it get stuck and shows "Performing TLS Handshake". This thing happens across all browsers that I have tried.

Best Answer

Well, there are a few potential problems here. I'll cover them one at a time.

Disable IPv6

First, it's possible your computer is attempting to communicate via ipv6 and failing. This is a surprisingly common problem when Windows thinks you have ipv6 support but your ISP does not, in fact, fully support it.

You can disable ipv6:

  1. Press the win10key +R key.
  2. Type control ncpa.cpl into the run dialog and click Ok.
  3. Right click on the network adapter you are using
  4. Click Properties from the drop down.
  5. Scroll down to where you see Internet Protocol Version 6 (TCP/IPv6) and uncheck the box next to it.
  6. Click Ok.

You may have to restart for the settings to take effect.

If this turns out not to be the problem you can simply re-check the ipv6 feature and re-start to re-enable it.

Fix Your DNS Config

I notice you have an RFC1918 IP address for your DNS server. In addition, the DNS ip is not part of the subnet your computer is on. There are two primary circumstances where this would be correct. 1): Your computer is on a large company intranet that is subdivided into multiple subnets and has a DNS server on another part of the intranet with a router handling communication between parts. 2): Your ISP uses RFC1918 ip addresses internally (uncommon, but not unheard of). In most cases, however, this would be an invalid configuration.

It's also possible there is simply something wrong with the DNS server, either permanently or temporarily.

First thing to check is to see if you can use DNS:

  1. Open the command prompt
  2. Type nslookup annapuma.onsite-crt.com.

You should see:

Server:  [DNS SERVER HOSTNAME]
Address:  [DNS SERVER IP ADDRESS]

Non-authoritative answer:
Name:    annapuma.onsite-crt.com
Address:  144.217.115.63
  1. If you get a different result or you get an error message try nslookup annapuma.onsite-crt.com 8.8.8.8 instead. This will use a different, publicly available DNS to resolve the address but should give the result mentioned above.

If #3 works but #2 does not then you need to change your DNS settings. 8.8.8.8 and 8.8.4.4 (Google's OpenDNS) are excellent choices for DNS if you don't need internal DNS resolution for a private network.

To change your DNS settings:

  1. Press win10key+R key.
  2. Type control ncpa.cpl into the run dialog
  3. Click Ok.
  4. Right click on the network adapter you are using
  5. Click Properties from the drop down.
  6. Double-Click Internet Protocol Version 4 (TCP/IPv4)
  7. Select the Use the following DNS server addresses radio button
  8. Type 8.8.8.8 into the "Preferred DNS Server" Box
  9. Type 8.8.4.4 into the "ALternate DNS Server" Box
  10. Click Ok
  11. Click Ok
  12. Perform the above DNS tests again.

Disable Browser Proxy

Your web browser may be configured to use a proxy. A quick test for this would be to telnet to an http server.

  1. Open the command prompt.
  2. Type telnet annapuma.onsite-crt.com 80

You should see:

Trying 144.217.115.63...
Connected to annapuma.onsite-crt.com.
Escape character is '^]'.
  1. type GET /index.html

You should see:

<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>301 Moved Permanently</title>
</head><body>
<h1>Moved Permanently</h1>
<p>The document has moved <a href="https://annapuma.onsite-crt.com/index.html">here</a>.</p>
<hr>
<address>Apache Server at annapuma.onsite-crt.com Port 80</address>
</body></html>
Connection closed by foreign host.

If this works and you still can't open pages in your browser then the issue is likely browser related and proxy settings may well be the issue. Bitdefender provides a guide for removing proxy settings that covers the most common browsers.

Something Else

There are quite a few other possibilities but these are by far the most likely. I would need more info if these do not solve your problem. If you manage to collect any additional info feel free to add the additional info to your question and drop a comment so I'll be notified.

Related Question