π ~1 min read
Table of contents
Symptom & Impact
VPN tunnel establishes but traffic stalls on larger packets, causing app timeouts.
Environment & Reproduction
Common with IPSec/SSL overlays where endpoint MTU exceeds path MTU.
ping 8.8.8.8 -f -l 1472
Get-NetIPInterface
Root Cause Analysis
Path MTU discovery fails or blocked ICMP fragmentation needed messages prevent adaptation.
Quick Triage
Find largest non-fragmenting payload and compare interface MTU settings.
for /l %i in (1300,10,1472) do @ping -f -l %i 8.8.8.8
Step-by-Step Diagnosis
Check tunnel adapter MTU and retransmission counters.
netsh interface ipv4 show subinterfaces
Get-Counter 'TCPv4Segments Retransmitted/sec'

Solution β Primary Fix
Reduce MTU on tunnel-facing interface to fit encapsulation overhead.
Still having issues? Our Network Design team can diagnose and resolve this for you. Get in touch for a free consultation.
netsh interface ipv4 set subinterface "Ethernet" mtu=1400 store=persistent

Solution β Alternative Approaches
Enable MSS clamping on edge firewall/router to avoid endpoint MTU changes.
# Configure MSS clamping on network edge device
Verification & Acceptance Criteria
Large transfers complete over VPN without retransmission spikes.
Test-NetConnection remote-app.contoso.local -Port 443
ping remote-app.contoso.local -f -l 1360
Rollback Plan
Restore prior MTU if local LAN traffic degrades unexpectedly.
netsh interface ipv4 set subinterface "Ethernet" mtu=1500 store=persistent
Prevention & Hardening
Document tunnel overhead and standardize MTU values across VPN endpoints.
netsh interface ipv4 show subinterfaces > C:Tempmtu-baseline.txt
Related Errors & Cross-Refs
Related to intermittent TLS handshake resets and SMB over VPN instability.
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 and RFC guidance on MTU, PMTUD, and VPN encapsulation.
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.