要解决在 Windows Server 2019 上无法连接到互联网的问题,可以按照以下步骤进行操作:
Test-NetConnection -ComputerName google.com -Port 80
如果命令返回 "True",表示网络连接正常。如果返回 "False" 或者其他错误消息,则可能存在网络连接问题。
Get-NetIPAddress
Get-DnsClientServerAddress
确保 IP 地址设置正确,并且 DNS 服务器地址正确。
Get-NetFirewallRule | Where-Object {$_.Enabled -eq "True" -and $_.Direction -eq "Outbound"}
确保防火墙规则允许对外连接。
Get-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Internet Settings" -Name ProxyServer
确保代理服务器地址和端口正确。
Restart-NetAdapter -Name "Ethernet"
确保将 "Ethernet" 替换为你的网络适配器名称。
如果以上步骤都无法解决问题,可以尝试重启服务器,并联系网络管理员或者 Microsoft 支持以获取更多帮助。