PC intermittently loses internet while other devices stay online — MediaTek RZ616 issue?

John Longcock 0 Reputation points
2026-09-06T12:55:17.0033333+00:00

I have a Windows 11 desktop with an MSI MAG X670E TOMAHAWK WIFI and MediaTek/AMD RZ616 Wi-Fi 6E 160MHz.

My PC’s internet randomly stops working, while my phone and other devices on the exact same Wi-Fi continue working normally.

The issue is extremely inconsistent. Sometimes everything works for hours. Sometimes it happens shortly after boot. At first I thought games like THE FINALS or Marvel Rivals were triggering it because launching them often caused Chrome/Discord to stop working, but I’ve now had the same issue without opening any game.

When it happens:

  • Chrome/websites usually give DNS not found / DNS resolution / ERR_CONNECTION_RESET-type errors
  • Discord and games lose connection
  • Windows sometimes shows “No internet, secured”
  • other devices on the same Wi-Fi still work
  • sometimes it fixes itself after a few minutes, sometimes it doesn’t
  • sometimes I will remain connected in a multiplayer game while websites and discord stops working

I ran continuous pings to:

192.166.1.XXX (my router)
1.1.1.1
google.com

During the problem, I’ve seen latency spikes and occasional timeouts even to 192.168.1.xxx, which makes me think this may be more than just DNS.

Things I’ve already tried:

  • restarted PC/router
  • DNS set back to Automatic/DHCP
  • DNS flush
  • Winsock/TCP-IP reset
  • release/renew IP
  • updated RZ616 driver from 3.5.0.1380 to 3.6.0.1425
  • checked Wi-Fi power management
  • disabled IPv6

Disabling IPv6 actually made things start working immediately at one point, but the overall problem later returned after about 24 hours of no issues, so IPv6 wasn’t the full fix.

I unfortunately cannot test Ethernet.

At this point I’m wondering whether the RZ616 Wi-Fi adapter itself is unstable/failing, or whether there’s another Windows/router issue I should investigate first.

Has anyone seen similar behavior with the RZ616/MT7922, especially intermittent DNS errors plus occasional packet loss to the local gateway?

Windows for home | Other | Internet and connectivity
0 comments No comments

2 answers

Sort by: Most helpful
  1. EmilyS726 264.5K Reputation points Independent Advisor
    2026-09-06T13:39:39.76+00:00

    I’ll suggest that you download and install the manual OEM driver for the WiFi adapter first. It’s listed as the AMD WiFi driver here.

    https://www.msi.com/Motherboard/MAG-X670E-Tomahawk-wifi/support#driver

    Unlike intel or Realtek adapters, mediatek isn’t always recognized by Windows well. I don’t think the OEM always publishes their drivers to be included with Windows updates. So I often see Windows might install with outdated or generic driver.

    Give the OEM driver a try first and see how that goes and decide if you need anything else such as chipper driver or BIOS update.

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments

  2. AI answer

    2026-09-06T12:55:47.89+00:00

    Given the symptoms and the tests already done, this should be treated as a Wi‑Fi connectivity problem on the Windows client first, not as a DNS-only problem.

    The strongest signal is the occasional packet loss and latency spikes to the local gateway. The guidance for Windows wireless troubleshooting is:

    1. Classify the scenario correctly This fits connection drops or unreliable roaming, and possibly issue started after an update or resume if the timing matches any recent change. For that scenario, collect the disconnect time, network name, access point, signal conditions, and correlate the client trace with access point or controller logs.
    2. Collect baseline evidence before changing anything else Since resets, driver changes, and IPv6 changes were already tried, avoid more disruptive changes until evidence is captured. Run these from an elevated Command Prompt:
         netsh wlan show drivers
         netsh wlan show interfaces
         netsh wlan show networks mode=bssid
         netsh wlan show profiles
         netsh wlan show wlanreport
      
      Also collect:
      • exact date and time of each failure
      • adapter model, driver version, and driver date
      • Windows build and recent update history
      • WLAN AutoConfig Operational log in Event Viewer
      mode=bssid is useful here because it shows BSSID, signal strength, channel, and radio type, which helps identify band, channel, or coverage issues.
    3. Check the basics that specifically match this symptom For cases where Wi‑Fi drops while other devices stay online, confirm:
      • the adapter is present and enabled
      • WLAN AutoConfig (WlanSvc) is running
      • whether the issue started after an OS, driver, firmware, BIOS, sleep, or resume change
      • whether other clients can see and use the same network normally
    4. Capture an ETW trace during a failure For an intermittent issue like this, capture a trace while reproducing the problem:
         if not exist c:\tmp md c:\tmp
         netsh trace start wireless_dbg capture=yes overwrite=yes maxsize=4096 tracefile=c:\tmp\wireless.etl
      
      Reproduce the issue and record the time, then stop the trace:
         netsh trace stop
      
      If needed, convert it:
         netsh trace convert c:\tmp\wireless.etl
      
      This creates wireless.cab, wireless.etl, and optionally wireless.txt.
    5. Interpret what the trace is likely to prove If the trace shows disassociation or port-down behavior, the Windows guidance is to determine where the connection state fails and trace backward from the last known good state. If a disassociation reason appears from the access point, decode that reason before changing client settings, because the reason code comes from the AP and should be correlated with AP or controller logs.
    6. Check for known issues and recent changes Before more resets or driver removal, review:
      • Windows release health for the installed Windows version
      • the motherboard or adapter manufacturer’s support information for wireless driver, firmware, and BIOS updates or known compatibility issues
    7. Avoid premature destructive steps Do not reset the network stack again, delete wireless profiles, remove the adapter/driver, or restart before collecting baseline state and reproduction time. Those actions can remove evidence or temporarily change behavior.

    Based on the supported guidance, the current evidence points more toward a wireless link/adapter/driver/infrastructure path issue than a pure DNS problem, because loss to the local gateway indicates the problem can occur below DNS. The next useful step is not another generic reset; it is collecting wlanreport, WLAN AutoConfig logs, and an ETW trace at the moment of failure, then checking whether the adapter is being disassociated, going port-down, or hitting a driver/power/resume-related transition.

    If the issue began after a recent update or resume behavior change, compare the current driver and firmware versions with the versions recommended by the device or adapter manufacturer before making further changes.


    AI-generated content may be incorrect. Read our transparency notes for more information.

    Was this answer helpful?

    1 person found this answer helpful.

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.