Habiendo encontrado una variedad de problemas extraños de Internet similares a los suyos, ofreceré los diferentes métodos que uso que tienden a aclarar el problema. Mi conocimiento de por qué tienden a funcionar es, en el mejor de los casos, intermedio, pero tienden a resolver problemas:
El orden no es importante, como lo están haciendo todos ellos. Cualquiera o una combinación de varios de ellos podría hacerlo.
Todo desde el símbolo del sistema:
:: resets the ipv4 interface
netsh interface ip reset
:: flush and reregister DNs
ipconfig /flushdns
net stop dnscache
net start dnscache
ipconfig /registerdns
:: clear persistent routes
route print -f
:: start / restart mrxdav
net stop netbt
net stop mrxdav 2>nul
sleep 60
net start mrxdav
net start netbt
:: clean the arpcache
arp -a -d
:: I might have the order of the switches backwards and the order matters, so if that doesnt do anything put the -d before the -a
:: make sure winhttp and webclient services are running (this is a mystery to me / neither appear necessary, but both have fixed my problem on various occasions)
net start webclient
net start winhttp
Finalmente, si aún no está arreglado, reinicie el enrutador y la PC de reinicio. No le dirá qué está mal, pero casi seguramente solucionará el problema.