Have you noticed an unfamiliar device in the list of devices connected to your Wi-Fi? Or do you want to restrict internet access for certain users in your home? Blocking devices via your router isn't just a way to protect your network from intruders, but also a tool for parental control or traffic optimization. In this article, we'll cover all current blocking methods, from standard admin panel functions to advanced methods using MAC filtering And guest networks.
It is important to understand that blocking methods depend on the router model and firmware version. For example, in TP-Link Archer C6 setup takes 2 minutes, and in older models D-Link manual entry may be required MAC addressesWe will look at universal solutions that work on 90% of modern routers, and also point out hidden nuances, which are not written about in official instructions.
If you've never accessed your router's control panel before, don't worry. We'll explain every step in detail, from logging into the admin panel to saving your settings. And for experienced users, we've prepared a section with alternative methods, including blocking through Telnet and setting VLAN on advanced models.
1. How to determine which device needs to be blocked
Before blocking a gadget, make sure it's the device you want to disable. The router's list of connected clients often displays unintelligible names like Android-12345678 or ESP_8266Here's how to identify them:
- 🔍 Check your IP address: Log into your router's admin panel (usually at
192.168.0.1or192.168.1.1) and find the sectionDHCP Clients ListorConnected devicesAll gadgets with theirIP,MAC addressesand names. - 📱 Use mobile apps: Apps like Fing (Android/iOS) or WiFi Analyzer scan the network and show device manufacturers by
MAC addressFor example, the address78:31:C1:...belongs Apple, AB0:10:41:...— Raspberry Pi. - 🖥️ Ping and traceroute: If the device is active, you can send a ping command from your computer:
(Replace the IP with the desired one). The answers will help you determine whether the device is turned on.ping 192.168.0.103
Pay attention to the column RX/TX (data reception/transmission) in the list of devices. If a gadget has high traffic, but you don't recognize it, this is a cause for concern. Also, some routers (for example, ASUS RT-AX88U) show device type (smartphone, TV, camera) by traffic signature.
2. Blocking the device via the router's web interface (universal method)
The easiest way is to block the device directly in the router's admin panel. These instructions apply to most models: TP-Link, MikroTik, Keenetic, Zyxel and others. The main thing is to know IP address or MAC address target device.
Step-by-step instructions:
- Open your browser and enter the router's address (usually
192.168.0.1,192.168.1.1or192.168.8.1). The default login and password can be found on the device sticker (usuallyadmin/admin). - Find the section with connected devices. Depending on the firmware version, it may be called:
DHCP → DHCP Clients List(TP-Link)Local Network → Devices(Keenetic)Network Map(ASUS)
MAC address (For example, 00:1A:2B:3C:4D:5E).Wireless → MAC Filtering (or Security → MAC Filter).Deny (disable) and add the copied one MAC address.☑️ Preparing to lock your device
On some routers (for example, Huawei HG8245) instead of MAC filter there is an option Block Device directly in the list of connected devices - just click on the gadget and select Block.
⚠️ Attention: If the device connects to the network viaVPNor Tor, hisMAC addressmay be masked. In this case, blocking via the router will not work; additional measures will be required (see Section 5).
3. IP Blocking: When It Works
Blocking by IP address less reliable than by MAC, because the IP can change (especially if the router is enabled DHCP). However, this method is useful for temporarily restricting access or if MAC address device is unknown.
How to block a device by IP:
- 🔗 In the router admin panel, find the section
FirewallorSecurity. - 📝 Add a blocking rule for a specific IP. For example, in MikroTik this is done through
IP → Firewall → Filter Rules, where a rule with an action is createddropfor the address192.168.0.105. - ⏳ Set the rule duration (if you need to temporarily block the device).
Example rule for MikroTik:
/ip firewall filter add chain=forward src-address=192.168.0.105 action=drop comment="Block_Device_X" disabled=no
If the router does not support Firewall, Can reserve IP for MAC address and then block that IP. For example, in TP-Link:
- Go to
DHCP → Address Reservation. - Add a rule by linking
MAC addressdevices to a fixed IP (eg192.168.0.200). - In the section
Parental ControlsorAccess ControlBlock this IP.
⚠️ Attention: If the network is usedIPv6, blocking only byIPv4may be ineffective. Check the protocol settings in your router.
4. Parental control: scheduled blocking
If your goal is not to permanently disable a device, but to restrict its access during certain hours (for example, at night or during school), use the parental controlIt's found in almost all modern routers, including budget models.
Setting up an example ASUS RT-AC66U:
- Go to
Adaptation → Parental Controls. - Click
Add Profileand indicateMAC addressdevices. - Select the days of the week and time intervals when access should be blocked (e.g.
22:00to07:00). - Save the settings and activate the profile.
In routers TP-Link a similar function is called Access Control and allows you to block not only by time, but also by type of traffic (for example, ban social networks or games).
| Router model | Settings section | Max. number of rules | Keyword blocking support |
|---|---|---|---|
| TP-Link Archer C7 | Access Control |
16 | Yes (URL filter) |
| ASUS RT-AX58U | Parental Controls |
32 | Yes (AiProtection) |
| Keenetic Giga | Home Network → Parental Controls |
Unlimited | Yes (through KeenDNS) |
| Zyxel Keenetic Lite III | Security → Access Control |
10 | No |
5. Advanced Methods: VLAN, Guest Network, and Telnet
If standard methods do not work (for example, the device bypasses the blocking through VPN or changes MAC address), use one of the advanced methods. They require more technical knowledge, but they guarantee results.
5.1. Isolating a device in a separate VLAN
Function VLAN (Virtual LAN) allows you to divide your network into virtual segments. If your router supports IEEE 802.1q (For example, MikroTik RB4011 or Ubiquiti UniFi), you can place the device in an isolated network without internet access.
Instructions for MikroTik:
/interface bridge portadd bridge=local interface=ether2 pvid=10
/interface vlan
add interface=bridge name=vlan10 vlan-id=10
/ip address
add address=192.168.10.1/24 interface=vlan10
/ip firewall filter
add chain=forward src-address=192.168.10.0/24 action=drop
5.2. Moving a device to a guest network
Guest network (Guest Network) is isolated from the main one by default. You can:
- 🔄 Reconnect the device to the guest network (if you know its password).
- 🔒 Disable the Internet on the guest network using the router settings.
- 📵 Set a speed limit or access time.
IN Keenetic The guest network is configured in the section Home Network → Guest NetworkHere you can completely disable internet access, leaving only the local network.
5.3. Blocking via Telnet/SSH
For advanced users: If the router has access via Telnet or SSH, you can block the device with a command. Example for firmware OpenWRT:
iptables -A FORWARD -m mac --mac-source 00:1A:2B:3C:4D:5E -j DROP
iptables-save > /etc/firewall.user
⚠️ Attention: Incorrect commands in Telnet may disrupt your router's operation. Back up your settings before experimenting!
What should I do if my device changes its MAC address?
Some programs (eg Technitium MAC Address Changer) allow you to spoof the MAC address. In this case:
1. Use blocking by IP with reference to DHCP.
2. Set up Firewall to block traffic based on signatures (for example, prohibit TOR or VPN).
3. As a last resort, change your Wi-Fi password—this will disable all devices except those you give the new password to.
6. How to bypass blocking: protecting yourself from bypassing
If you block another user's device (for example, a child or a neighbor), be prepared for the fact that they will try to bypass the restrictions. Here the most common bypass methods and how to prevent them:
- 🔄 Changing the MAC address: Many smartphones and PCs allow you to replace
MACSolution: Use blocking byIPwith reference toDHCPor customizeFirewallto prohibit changeMAC(if the router supports ARP Inspection). - 🌐 VPN or proxy: If the device is connected via
VPN, blocking at the router level won't work. The solution is to block the ports.VPN(For example,1194/UDPFor OpenVPN) in the settingsFirewall. - 📶 Connecting to another network: If there are other Wi-Fi networks in range, the user can reconnect. Solution: Use network analyzer (For example, NetSpot) to search for and block alternative access points.
- 🔌 Connection via cable: Wi-Fi blocking does not affect wired connections. Solution: Set up
Port Securityon the router (if any) or disable unused portsLAN.
If the device continues to connect despite all blocks, check the router for vulnerabilities. Some models (for example, older ones) D-Link DIR-300) have vulnerabilities that allow security settings to be bypassed.
7. Alternative solutions: when the router doesn't help
If your router doesn't support the features you need, or you rent it from a provider (and can't change the settings), use alternative methods:
- 🖥️ Computer-level blocking: IN Windows You can deny network access for a specific person
MAC addressesthroughFirewallor Group Policy (for advanced users). - 📱 Network monitoring applications: GlassWire (Windows/macOS) or NetGuard (Android) allow you to block traffic from individual devices on a local network.
- 🌍 Changing DNS servers: Configure on the router CleanBrowsing (
185.228.168.168) or OpenDNS FamilyShield - This will block access to unwanted sites on all devices. - 🔧 Router firmware: Install alternative firmware (DD-WRT, OpenWRT) - it provides advanced blocking capabilities, including
Quality of Service (QoS)and deep traffic filtering.
If you rent a router from a provider (for example, Rostelecom or Beeline), contact support and request activation of the function Parental Control or MAC filteringSome providers provide these options upon request.
8. Common mistakes and how to avoid them
When devices are blocked, users often encounter common problems. Here's how to prevent them:
- 🔄 The router does not save settings: Please disable the function before changing the settings.
Auto Updatein the firmware—sometimes updates reset user rules. Also, check that the settings are saved to non-volatile memory (in some routers, you need to pressSave to Flash). - 📵 The wrong device is blocked: Make sure you copied the correct one
MAC addressSome devices (eg. Amazon Echo) have multiple network interfaces and may appear twice in the list. - ⏳ The lock is triggered with a delay: In routers with a slow processor (for example, Tenda N301) rules
FirewallThe settings are not applied immediately. Solution: reboot the router after saving the settings. - 🔒 A locked device still has access: Check if it is connected via
VPNor mobile Internet. Also make sure that the router is not in the "Secure Mode" mode.WPS- it may allow you to bypass some restrictions.
If you lost internet access on all your devices after being blocked, you most likely made a mistake in the settings. FirewallRestore the router to factory settings (using the button) Reset) and repeat the procedure.
FAQ: Answers to Frequently Asked Questions
Is it possible to block a device without accessing the router settings?
Yes, but with limitations. You can:
- Turn off Wi-Fi on the device itself (if you have access to it).
- Use apps like Fing for sending
Deauth-packets (this will temporarily break the connection, but will not block it permanently). - Set up blocking at the provider level (if they provide such a service).
However, for complete blocking, access to the router will still be required.
How do I block a device on a router from a provider (for example, MGTS or Beeline)?
Routers from ISPs often have limited settings. Try this:
- Log in to the admin panel (the address is usually indicated on the sticker).
- Find a section
Wi-FiorSecurity- sometimes there is an option thereBlacklist. - If nothing happens, call your provider's support and request activation.
MAC filtering.
As a last resort, buy your own router and connect it to the mode Bridge.
Will a locked device be able to see other devices on the local network?
Depends on the blocking method:
- If you used
MAC filterorParental Control, the device will not be able to access the Internet, but will be able to see other gadgets on the local network. - If you placed the device in
VLANor a guest network, access to local resources (printers, network drives) will be limited. - If you have locked your device through
Firewallwith the ruleDROP, it will not be able to exchange data with either the Internet or the local network.
Is it possible to lock a device by name (eg "iPhone_X")?
No, blocking by device name is not possible because:
- Name (
hostname) is easy to counterfeit. - Many devices do not broadcast their name to the network.
- Routers identify clients by
MACorIP, and not by name.
The exception is some corporate solutions (for example, Cisco Meraki), where you can create name-based policies, but this does not apply to consumer routers.
How do I know if my device is trying to bypass the lock?
Signs of blocking bypass:
- A new one appears in the list of connected devices
MAC address, but the traffic comes from the same gadget. - The device connects to the network, but it
IP addressconstantly changing (visible in the router logs). - Suspicious connections appear in the traffic
VPN servers(ports1194,1723,443). - The device connects to the network but does not appear in the list of clients (may be in use)
MAC-spoofing).
To track such cases, set up traffic logging in your router or use Wireshark for packet analysis.