Local Internet Connectivity Troubleshooting Checklist

Modified on Thu, 2 Oct at 1:36 PM

When a Softdrive virtual machine appears to be offline or inaccessible, it is important to confirm that the issue is not caused by a problem with the local computer’s internet connection. This guide provides a step-by-step process to verify basic network connectivity, from checking local adapter settings to testing external internet and DNS resolution. By following these steps first, you can quickly determine whether the issue lies with the user’s workstation or if further troubleshooting should be directed toward the Softdrive environment.




Step 1: Check Physical/Basic Connectivity

  1. Make sure the computer is physically connected (Ethernet cable plugged in or Wi-Fi connected).

  2. Verify that the network icon in the system tray doesn’t show “No Internet” or a red X.



Step 2: Test Local Network

  1. Open Command Prompt (Windows) or Terminal (Linux/Mac).

  2. Run:

    ping 127.0.0.1

    ✅ If replies are received → local TCP/IP stack is working.
    ❌ If failed → local networking is broken.

        3.Run:

ipconfig /all # Windows ifconfig # Linux/Mac
  • Confirm you have an IP address (not 169.254.x.x).

  • Note gateway IP.



Step 3: Test Gateway / Router

  1. Run:

    ping <gateway_IP>

    ✅ If replies → PC can reach router.
    ❌ If no replies → check cabling, Wi-Fi, or router.



 Step 4: Test DNS & Internet

  1. Test external connectivity (by IP):

    ping 8.8.8.8

    ✅ Replies mean internet routing works.
    ❌ No replies → ISP/router issue.

  2. Test DNS name resolution:

    ping google.com

    ✅ Replies → DNS works.
    ❌ If IP works but DNS fails → DNS issue (check adapter DNS settings).




Step 5: Test Browser & Secure Connectivity

  1. Open a web browser → try https://www.google.com.

  2. Run:

    nslookup google.com

    → Confirms DNS resolution.

  3. Run:

    tracert google.com # Windows traceroute google.com # Linux/Mac

    → Shows where connectivity drops.



Step 6: Confirm Firewall / VPN

  1. Disable any VPNs temporarily to test if blocking Softdrive.

  2. Check Windows Firewall/Endpoint Security logs for dropped packets.

  3. Ensure port 443 (HTTPS) and any required Softdrive console ports are not blocked.




 Step 7: Advanced (if still failing)

  • Check if other devices on the same network can access the internet.

  • Restart router/modem.

  • Flush DNS cache:

    ipconfig /flushdns
  • Renew IP:

    ipconfig /release 
     ipconfig /renew




If all the above pass, the local computer has working internet, and the problem is likely on the Softdrive VM itself (network config, NIC, VLAN, DHCP, or host connectivity).