Era Host hosting
EraHost – Free Domain, Cheap Hosting!
Client Area
Support 24/7
Menu

Tracert Unable to Resolve — How to Verify Hostname or Domain

4 min read
07.04.2026

The error "Unable to resolve target system name" in tracert is often caused by an invalid or unreachable hostname or domain name. Here is how to verify and troubleshoot the issue.

Tracert Verify Hostname
Tracert verify — ping + nslookup + WHOIS before tracing.

For closely related tracert / DNS topics, see Tracert — Unable to Resolve (original), Unable to Resolve Target System Name (sibling), Steps to Resolve, and Unable to Resolve Target System Name Error.

Check the Hostname/Domain Name Format

  • Correct Format: Ensure the domain name is in the proper format without prefixes like http:// or https://.
  • Example:
  • tracert example.com
  • Incorrect Format:
  • tracert http://example.com

Ping the Domain

Use the ping command to test if the hostname or domain name resolves to an IP address.

ping example.com

Expected Output: If the domain resolves, you will see responses with the IP address.

Pinging example.com [93.184.216.34] with 32 bytes of data:

Reply from 93.184.216.34: bytes=32 time=12ms TTL=57

If Ping Fails: The hostname cannot be resolved. Proceed with further troubleshooting.

Linux VDS
High performance for your projects
  • Root access and flexible setup
  • Control panel
  • NVMe disks
  • DDR5
Linux VDS

Use nslookup to Check DNS Resolution

Run the nslookup command to check if the domain resolves to an IP address.

nslookup example.com

Expected Output:

Server:  dns.google

Address: 8.8.8.8



Non-authoritative answer:

Name:    example.com

Address: 93.184.216.34

If nslookup Fails: The domain name may not exist, or there may be an issue with your DNS server.

Verify the Domain Status

Check if the domain is valid, active, and registered using an online WHOIS lookup tool:

Search for the domain to confirm:

  • It is registered and active.
  • Its DNS records are properly configured.

Use an Online DNS Checker

Use online DNS tools to verify the domain DNS resolution:

Enter the domain and check its A record (IPv4 address) globally.

Try with an IP Address

To rule out DNS issues, use an IP address instead of a hostname in the tracert command:

tracert 93.184.216.34

If the IP works but the hostname does not, the issue lies with DNS resolution.

Ensure Internet Connectivity

Check if your system has an active internet connection:

  • Open a browser and try accessing a known website, such as https://google.com.

Test with a Different DNS Server

If the issue persists, switch to a public DNS server like Google DNS or Cloudflare DNS.

How to Change DNS on Windows:

  1. Go to Control Panel > Network and Sharing Center > Change Adapter Settings.
  2. Right-click your active network connection and choose Properties.
  3. Select Internet Protocol Version 4 (TCP/IPv4) and click Properties.
  4. Enter the following DNS servers:
    • Google DNS: Preferred DNS: 8.8.8.8, Alternate DNS: 8.8.4.4
    • Cloudflare DNS: Preferred DNS: 1.1.1.1, Alternate DNS: 1.0.0.1

Common Scenarios and Fixes

Scenario Command Fix
Typo in the domain name tracert exapmle.com Correct to tracert example.com.
DNS resolution issue ping example.com fails Switch to a public DNS server.
Domain is expired nslookup example.com fails Verify the domain status in WHOIS.
DNS misconfiguration DNS records are missing Check and update DNS settings for domain.

Example Outputs and What They Mean

  1. Successful Resolution:
  2. Pinging example.com [93.184.216.34] with 32 bytes of data:
    
    Reply from 93.184.216.34: bytes=32 time=12ms TTL=57

    The domain is valid, and DNS is resolving correctly.

  3. Failure to Resolve:
  4. Ping request could not find host example.com. Please check the name and try again.

    Indicates DNS resolution failure. Check your DNS settings or verify the domain existence.

By following these steps, you should be able to resolve the "Unable to resolve target system name" error in tracert.

Frequently asked questions
ping does name resolution AND ICMP. If ping replies with hostname → IP, DNS works AND target reachable. If ping says "could not find host," DNS issue. If "request timed out" but IP shown, DNS OK but ICMP blocked. Three outcomes narrow tracert problem before you even run it.
Domain registration status (active, expired, suspended). Suspended domains can return weird DNS — registrar nameservers serve only parking page IP. If WHOIS shows status:clientHold or expired, that's why your tracert fails — domain isn't really live. Owner needs to renew/restore.
(1) Trailing dot: `example.com.` vs `example.com` — most tools handle both. (2) IDN domains: must be Punycode (`xn--...`) in tools that don't support Unicode names. (3) Mixed case: case-insensitive in DNS but some tools normalize differently. Stick to lowercase ASCII for tracert.
Lookup.icann.org, dnsviz.net, ping.eu — show resolution from their perspective. If they resolve but your machine doesn't, your local resolver is the issue. Useful sanity check before more invasive debug.
Related articles
Unable to Resolve Target System Name with Tracert: Steps to Resolve
Tracert: "Unable to Resolve Target System Name"
Unable to Resolve Target System Name Error