Tendo encontrado uma variedade de problemas estranhos na Internet semelhantes aos seus, vou oferecer os diferentes métodos que utilizo que tendem a esclarecer a questão. Meu conhecimento de por que eles tendem a funcionar é, na melhor das hipóteses, intermediário, mas eles tendem a resolver problemas:
A ordem não é importante, como está fazendo todos eles. Qualquer um ou uma combinação de vários deles pode fazê-lo.
Tudo a partir do prompt de comando:
:: 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, se ainda não for corrigido, reinicie o roteador e reinicie o pc. Não lhe dirá o que está errado, mas quase certamente resolverá o problema.