You've connected to Wi-Fi, but instead of internet access you see the message Limited Access or a yellow triangle with an exclamation mark on the network icon? This problem is familiar to many laptop users. Windows 10/11, and it can occur due to both device-specific issues and router settings. In most cases, the error can be resolved within 5-10 minutes, but to do so, you need to accurately determine the cause.
In this article we will look at all possible reasons limited access issues—from the mundane (like an incorrect password) to the complex (like an IP address conflict or DHCP issues). You'll learn how to diagnose the problem using built-in tools. Windows, which router settings should be checked first, and what to do if the network works on other devices but not on your laptop. We've also compiled unique solutions for cases where standard methods don't help — for example, resetting the TCP/IP stack or manually configuring DNS.
Before we move on to the instructions, please answer one question: does the problem occur only on one laptop or on all devices connected to this Wi-Fi?
1. Why does "Limited Access" appear on Wi-Fi?
Message Limited Access (or Limited Connectivity in the English version Windows) means the laptop is connected to the router but can't access the internet. This happens for one of three reasons:
- 🔌 Problems on the router side: Incorrect DHCP settings, IP address conflict, device MAC address blocked, or router failure.
- 💻 Laptop problems: outdated network card drivers, TCP/IP protocol failure, incorrect network settings, or antivirus/firewall activity.
- 🌍 External factors: problems with the Internet provider, channel congestion or traffic blocking at the operator level.
Most often the error is related to IP settings: The laptop cannot automatically obtain the correct address from the router (via DHCP) or is using incorrect parameters DNSLess often, drivers are to blame—for example, after an update. Windows or installing new software.
If the problem appeared suddenly (everything worked before), first check other devicesIf there's no internet connection on both your phone and tablet, the router or ISP is to blame. If it's only on your laptop, look for the problem in its settings.
2. Quick fixes: what to do first
Before you dig into the settings, do the following: basic actions, which help in 70% of cases:
- Restart your router and laptopUnplug the router for 30 seconds, then plug it back in. Restart your laptop.
- Check your Wi-Fi passwordSometimes the error occurs due to an incorrectly entered security key. Remove the network in settings. Windows and reconnect.
- Disable VPN/proxy. If you use VPN clients (For example, NordVPN, ProtonVPN) or proxy servers, temporarily deactivate them.
- Try a different browserSometimes access restrictions are related to settings. Chrome or Edge (for example, due to extensions).
If the problem persists after these steps, proceed to diagnostics.
Reboot your router and laptop|
Check if your Wi-Fi password is correct|
Disable VPN/Proxy|
Try another browser|
Make sure your provider has money in your account-->
3. Diagnosing the problem on a laptop
To pinpoint the cause, use the built-in tools. Windows.
Method 1: Network Troubleshooter
Open Settings → Network & Internet → Status and press Network TroubleshootingThe system will automatically check:
- 🔍 Having a valid IP address.
- 🔌 Network adapter status.
- 🌐 DNS server availability.
If the tool finds a problem, it will offer to fix it automatically. Follow the on-screen prompts.
Method 2: Check IP address and DNS
Open command line (Win + R → enter cmd → Enter) and run the command:
ipconfig /all
Please pay attention to the lines:
IPv4 address— must be in the format192.168.x.xor10.x.x.x. If there169.254.x.x, which means the laptop did not receive an address from the router.Main gateway- must match the router's IP (usually192.168.1.1or192.168.0.1).DNS servers— if empty or incorrect values are specified, the Internet will not work.
If the IP address starts with 169.254, this means that DHCP didn't workTry getting the address manually:
ipconfig /release
ipconfig /renew
Method 3: Ping test
Run in command line:
ping 8.8.8.8
- ✅ If there are answers (
Reply from 8.8.8.8) - the problem is DNS (section 6). - ❌ If
"Timeout exceeded"— there is no connection to the router or provider.
Then check the connection with the router:
ping 192.168.1.1
- ✅ If there is an answer, the problem is between the router and the provider.
- ❌ If not, there is a problem with your laptop or Wi-Fi settings.
4. Router settings that may block access
If the problem only occurs on one laptop, but other devices are working fine, check:
| Router parameter | What could go wrong | How to fix |
|---|---|---|
| MAC address filtering | The router blocks devices whose MAC is not whitelisted. | Disable filtering or add the laptop's MAC to the list of allowed ones (Settings → Wireless → MAC Filter). |
| Wi-Fi operating mode | The laptop does not support the selected standard (for example, 802.11ac instead of 802.11n). |
Set to mixed mode (802.11b/g/n/ac) or 802.11n for compatibility. |
| Channel width | The band is too wide (for example, 80 MHz) may cause interference. |
Install 20/40 MHz in the Wi-Fi settings. |
| DHCP server | The range of distributed IP addresses is disabled or limited. | Enable DHCP and expand the address pool (for example, with 192.168.1.100–199 to 192.168.1.100–200). |
Also check if it is turned on client isolation mode (For example, AP Isolation or Client Isolation). In this case, devices on the network cannot see each other, which can interfere with the correct operation of DHCP.
⚠️ Attention: If you are unsure of your router settings, make a backup copy of the configuration before making changes (System Tools → Backup/Restore). Incorrect settings can completely disable the Internet.
5. Manual IP and DNS assignment
If your laptop does not receive an IP address automatically, assign one manually:
- Open
Settings → Network & Internet → Wi-Fi → Configure adapter settings. - Right-click on your Wi-Fi connection → "Properties".
- Select Internet Protocol Version 4 (TCP/IPv4) → "Properties".
- Set the switch to "Use the following IP address" and enter:
- IP address:
192.168.1.X(WhereX— a number from 10 to 99, not occupied by other devices). - Subnet mask:
255.255.255.0. - Default gateway:
192.168.1.1(or another address of your router). - DNS servers:
8.8.8.8(Google) and1.1.1.1(Cloudflare).
Example of filling for most routers:
IP: 192.168.1.50
Mask: 255.255.255.0
Gateway: 192.168.1.1
DNS: 8.8.8.8, 1.1.1.1
After applying the settings, restart your laptop. If the internet works, the problem was DHCP server of the router.
6. Reset network settings and update drivers
If the previous methods did not help, the problem may lie in network card drivers or a stack failure TCP/IP.
Step 1: Update the Wi-Fi adapter driver
Open device Manager (Win + X → Device Manager), find the section Network Adapters and update the driver for your Wi-Fi module (for example, Intel Wireless-AC, Qualcomm Atheros, Realtek RTL8xxx).
If the update does not help, remove the driver and install it again from the laptop manufacturer's website (for example, Lenovo, HP, ASUS) or chipset (for example, Intel, Broadcom).
Step 2: Reset the TCP/IP stack
Open command prompt as administrator and do it in order:
netsh int ip resetnetsh winsock reset
ipconfig /flushdns
After executing the commands, restart your laptop.
Step 3: Reset the network in Windows
Go to Settings → Network & Internet → Status → Network resetThis will remove all network adapters and reset them to factory settings. Attention: After the reset, you will have to reconnect to all Wi-Fi networks.
⚠️ Attention: If the problem persists after resetting the network, check your laptop for viruses using Malwarebytes or Kaspersky Virus Removal ToolSome malware blocks network traffic.
7. Problems on the provider's side
If none of the methods worked, it might be the culprit. Internet provider. Check:
- 💰 Is the Internet paid for? Some operators (for example, Rostelecom, Beeline) when the balance is zero, access is blocked, but Wi-Fi remains active.
- 🔧 Is there any maintenance work going on? Call support or check the service status on the provider's website.
- 📡 Have your connection settings changed? For example, the provider could have changed the connection type from
DHCPonPPPoE(then you need to enter the login/password in the router settings).
If you suspect your ISP, connect the cable directly to your laptop (bypassing the router). If the internet works, the problem is with your router settings. If not, call support.
8. Rare causes and unconventional solutions
In some cases, the "Restricted Access" error occurs due to:
- 🔋 Saving Wi-Fi adapter energy. Open
Device Manager → Network Adapters → Your Wi-Fi Properties → Power Managementand uncheck Allow the computer to turn off this device to save power. - 🛡️ Firewall or antivirus.Temporarily disable Windows Defender and third-party antiviruses (for example, Avast, ESET NOD32).
- 🔄 Conflict with another network adapter. If you have installed USB Wi-Fi adapter (For example, TP-Link TL-WN725N), turn it off and check the built-in module.
- 🕒 Incorrect time and dateIf the time settings on your laptop are out of sync, this may be preventing it from obtaining an IP address via DHCP. Synchronize the time via
Settings → Time & Language.
If you use corporate network (for example, in an office or university), the problem may be in the settings 802.1X (certificate authentication). In this case, please contact your network administrator.
What to do if nothing helps?
If you have tried all methods and the error persists, try:
1. Install Windows in clean boot mode (without third-party services).
2. Test the laptop on another router (for example, from a mobile hotspot on your phone).
3. Update the laptop BIOS (instructions on the manufacturer’s website).
4. Contact a service center - there may be a hardware malfunction of the Wi-Fi module.
FAQ: Frequently Asked Questions
Why is there internet on my phone, but “Limited Access” on my laptop?
This means the problem is on the laptop's end. The most common culprits are:
- Outdated Wi-Fi adapter drivers.
- IP address conflict (try assigning a static IP).
- Antivirus or firewall action.
- Incompatibility of Wi-Fi standards (change the router operating mode to
802.11n).
How do I find out my laptop's MAC address to add it to my router's whitelist?
Run in command line:
ipconfig /all
Look for the line Physical address in the section Wireless LAN adapterThis is the MAC address (example: 00-1A-2B-3C-4D-5E).
Can a virus cause "Restricted Access"?
Yes. Some viruses (such as Trojans or botnets) block network traffic or change DNS settings. Check your laptop with Malwarebytes or Dr.Web CureIt.
What should I do if the problem persists after resetting the Windows network?
Try:
- Install the Wi-Fi adapter driver manually (download from the manufacturer's website).
- Roll back the system to a restore point (if the problem appeared after an update).
- Check the laptop on another router.
Why did the Internet disappear after a Windows update?
Windows You may have installed an incompatible driver for your Wi-Fi adapter. Roll back the driver:
- Open
Device Manager → Network Adapters. - Right-click on the adapter → Properties → Driver → Roll Back Driver.
- If the button is inactive, uninstall the driver and reinstall it from the manufacturer's website.