Você pode estar encontrando uma espera de DNS na VPN, devido à maneira como Windows 10 emite solicitações de DNS para VPN-dns, que é muito diferente das versões anteriores do Windows.
O Windows 10 emite consultas DNS em paralelo a todos os adaptadores, então é suposto ter a primeira resposta para chegar.
Infelizmente, pode, em vez de dar a primeira resposta, espere por todas as respostas. Se este bug não novo ainda não foi corrigido, para retornar o comportamento, tanto quanto possível ao do Windows anterior versões, faça as seguintes modificações no registro:
DisableSmartNameResolution (DWORD)
Na chave do registro
HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Windows NT\DNSClient
.
O valor é 1 para desativar, 0 para ativar a resolução inteligente.
De Desativar a resolução de nome multi-homed inteligente :
Specifies that a multi-homed DNS client should optimize name resolution across networks. The setting improves performance by issuing parallel DNS link local multicast name resolution (LLMNR) and NetBIOS over TCP/IP (NetBT) queries across all networks. In the event that multiple positive responses are received the network binding order is used to determine which response to accept.If you enable this policy setting the DNS client will not perform any optimizations. DNS queries will be issued across all networks first. LLMNR queries will be issued if the DNS queries fail followed by NetBT queries if LLMNR queries fail. If you disable this policy setting or if you do not configure this policy, setting name resolution will be optimized when issuing DNS LLMNR and NetBT queries.
DisableParallelAandAAAA (DWORD)
Na chave do registro
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Dnscache\Parameters
.
O valor é 0 para ativar, 1 para desativar
O DNS A e AAAA são executados em paralelo em todos os servidores DNS configurados,
com a resposta mais rápida teoricamente aceita primeiro.
Você também pode definir essas políticas usando o PowerShell:
Set-ItemProperty -Path "HKLM:\Software\Policies\Microsoft\Windows NT\DNSClient" -Name DisableSmartNameResolution -Value 1 -Type DWord
Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Services\Dnscache\Parameters" -Name DisableParallelAandAAAA -Value 1 -Type DWord