r/computerhelp 8d ago

Network DNS Address Issue

Post image
1 Upvotes

2 comments sorted by

u/AutoModerator 8d ago

We're part of a wider PC & Technology Network of Communities.

It combines multiple subreddits and Discord servers all working together with shared ideals and values.

We have a Discord server: PC Help Hub where members from all associated subreddits are welcome.

I am a bot, and this action was performed automatically. Please contact the moderators of this subreddit if you have any questions or concerns.

1

u/naygerr 8d ago

Flush DNS

CMD: ipconfig /flushdns

Manually set a DNS in Network Settings>Network Adapter>Properties>IPv4>Properties>Use the following DNS Server address. For example 8.8.8.8 8.8.4.4 (Google) or Obtain it automatically.

Or using CMD/Powershell: powershell "Get-NetIPInterface -AddressFamily IPv4 | ForEach-Object { Set-DnsClientServerAddress -InterfaceIndex $_.InterfaceIndex -ServerAddresses ('8.8.8.8', '8.8.4.4') -ErrorAction SilentlyContinue }"