computing
  • 8

Cannot Ping DNS Server On My PC

  • 8

Able to establish wireless connection to broadband router but cannot browse internet as it seems unable to resolve site names.

Unable to ping DNS server from the pc, get request timed out message

Share

1 Answer

  1. Your DNS is being provided to you by your ISP. You are probably not going to be able to ping it but that does not mean it is not working. To test your DNS you need to ping something by its FQDN like…

    PING YAHOO.COM

    It you should resolve and IP for YAHOO and start pinging it. Try the command above and tell us what you get.

    You could also try using a

    IPCONFIG /FLUSHDNS
    IPCONFIG /REGISTERDNS

    This will flush your local DNS cache and reload. Then do…

    PING YAHOO.COM
    IPCONFIG /PRINTDNS

    And you should see yahoo loaded in your local DNS.

    • 0