π ~1 min read
Table of contents
Symptom & Impact
Outbound connectivity fails because no default route is present.
Environment & Reproduction
Observed after NIC driver refresh resets interface TCP/IP settings.
ipconfig /all
route print
Root Cause Analysis
Gateway setting is removed or metric is overridden by alternate interface.
Quick Triage
Check active adapters and route precedence immediately.
Get-NetIPConfiguration
Get-NetRoute -AddressFamily IPv4 | Sort-Object RouteMetric
Step-by-Step Diagnosis
Validate interface index, DHCP/static state, and persistent routes.
Get-NetIPInterface
Get-NetRoute -DestinationPrefix 0.0.0.0/0

Solution β Primary Fix
Reapply default gateway and pin interface metric if needed.
Still having issues? Our Network Design team can diagnose and resolve this for you. Get in touch for a free consultation.
New-NetRoute -DestinationPrefix 0.0.0.0/0 -InterfaceAlias Ethernet -NextHop 10.0.0.1
Set-NetIPInterface -InterfaceAlias Ethernet -InterfaceMetric 10

Solution β Alternative Approaches
Use DHCP reservation with option 003 to enforce gateway consistently.
ipconfig /renew
Verification & Acceptance Criteria
Default route persists across reboot and internet endpoint tests pass.
route print
Test-NetConnection 8.8.8.8
Rollback Plan
Remove manually added route if it conflicts with policy routing.
Remove-NetRoute -DestinationPrefix 0.0.0.0/0 -Confirm:$false
Prevention & Hardening
Automate post-driver-update network validation checklist.
Get-NetAdapter | Select Name,DriverVersion
Related Errors & Cross-Refs
Related to asymmetric routing and unreachable default gateway alarms.
Related tutorial: View the step-by-step tutorial for Windows Server 2012 R2.
View all Windows Server 2012 R2 tutorials on the Tutorials Hub β
Browse all common problems & solutions on the Tutorials Hub.
References & Further Reading
Microsoft networking docs for route management and interface metrics.
Need Expert Help?
If you cannot resolve this yourself, our team offers hands-on Server Management, Managed IT Services, and flexible Support Plans. Contact us today β we respond within one business day.