Who's connected to my D-Link Wi-Fi router? Check in 30 seconds.

Have you noticed your internet has slowed down, even though your plan hasn't changed? Or is it your router? D-Link Has your network started flashing strangely during off-hours? Perhaps unauthorized devices have connected to your network—neighbors, guests who forgot to disconnect, or even hackers using your traffic for their own purposes. In this article, we'll look into it. All available methods for checking connected gadgets to routers D-Link (including models DIR-300, DIR-615, DIR-825 and new episodes COVR), and we will also learn how to block unwanted users.

You don't need to be an IT specialist: most methods only require a browser or smartphone. We'll look at official tools from D-Link (web interface and application D-Link Wi-Fi), as well as third-party utilities for advanced users. We'll pay special attention to hidden connections that aren't displayed in the standard list of devices. These can be identified by analyzing DHCP clients or router logs.

If you've never accessed your router settings before, don't worry. We'll walk you through every step, including logging into the control panel, finding the sections you need, and explaining technical terms like MAC addresses or ARP tablesAt the end of the article, you'll find a FAQ with answers to the most frequently asked questions about Wi-Fi network security. D-Link.

The most reliable and universal method is to use the router's built-in control panel. It works on all models. D-Link, regardless of the year of manufacture, and does not require any additional software. All you need is a computer, laptop, or smartphone connected to the router's network (via cable or Wi-Fi).

This manual is suitable for most firmware versions, but the menu appearance may differ slightly. For example, in newer models D-Link EXO or COVR The interface is responsive and automatically adjusts to the screen size. Here's a step-by-step guide:

  1. Open your browser (Chrome, Firefox, Edge) and enter in the address bar 192.168.0.1 or 192.168.1.1These are standard IP addresses for routers. D-LinkIf the page doesn't open, check the sticker on the back of your device - it may indicate a different address (for example, 192.168.10.1 for some business models).
  2. Enter your login and passwordBy default this is admin/admin or admin/empty field. If you changed the data, use your own.
    ⚠️ Attention: If you can't log in, reset your router using the button Reset (hold for 10 seconds), but note that this will disconnect all users and restore factory settings.
  3. Go to the section Status (or Status (in English-language firmware) → Local area network (Local Network) → Client list (Client List or DHCP Clients). In some models (for example, DIR-882) the desired item can be called Wireless Clients.
  4. A table with connected devices will appear. Please note the columns:
    • 🔹 Host Name — the device name (if configured). For example, iPhone-12-Pro or DESKTOP-ABC123.
    • 🔹 MAC Address — a unique physical address (example: 00:1A:2B:3C:4D:5E). It can be used to identify the manufacturer of the device.
    • 🔹 IP Address — local IP assigned by the router (for example, 192.168.0.103).
    • 🔹 Connection Type — connection type (Wireless for Wi-Fi or Ethernet for cable).

If there are any unknown devices in the list, write them down. MAC addresses — they will be needed for blocking (we will talk about this in section 5). Please note the time of the last activity (Last Activity): If the device has been inactive for several days, it may simply have forgotten to disconnect from the network.

📊 How often do you check the devices connected to your Wi-Fi?
Never checked
Once every few months
Every month
Only if I notice problems

For smartphone owners on Android or iOS company D-Link an official application has been developed D-Link Wi-Fi (previously called D-Link Router). It allows you to manage your router remotely, including viewing a list of connected devices. The app's advantages include a user-friendly interface and the ability to receive notifications about new connections.

To use the application:

  • 📱 Download D-Link Wi-Fi from App Store or Google Play (Free, no extra fluff). Make sure your router model is supported—the list of compatible devices is in the app description.
  • 🔗 Connect your smartphone to the router's network (Wi-Fi or via a cable with an adapter). The app will automatically find your D-Link in the local network.
  • 🔑 Enter your control panel login and password (the same as for the web interface).
  • 📊 Go to the section Devices (Devices) or Net (Network). A list of all connected gadgets with their names will be displayed here, MAC addresses and connection type.

The app also shows traffic usage graph by device, which will help identify bandwidth-hungry devices. For example, if an unknown device consumes 80% of the bandwidth, this is a clear sign of an unauthorized connection. Newer versions of the app include this feature. Guest network, which allows you to isolate suspicious devices from the main network.

3. Checking via the command line (for advanced users)

If you have access to a computer running Windows, macOS or LinuxYou can scan your local network using standard network utilities. This method doesn't require access to the router's control panel, but it will only show currently active devices.

For Windows follow these steps:

  1. Open Command line (Win + R → enter cmdEnter).
  2. Enter the command to view ARP tables (list of IP and MAC addresses of devices with which your PC communicated):
    arp -a

    As a result, you will see a list like this:

    192.168.0.1 ff-ff-ff-ff-ff-ff dynamic
    

    192.168.0.100 00-1a-2b-3c-4d-5e dynamic

  3. To get a more complete list, first ping the entire local network range (for example, if your router issues an IP from 192.168.0.1 to 192.168.0.254):
    for /L %i in (1,1,254) do ping -n 1 192.168.0.%i

    Then re-run arp -a — now the table will contain all the devices that responded.

For macOS/Linux use the command:

nmap -sn 192.168.0.0/24

It will scan the network and list hosts with MAC addresses and names (if available). Utility nmap may not be installed by default - it needs to be installed via the package manager (brew install nmap for macOS or sudo apt install nmap for Linux).

⚠️ Attention: Some devices (such as smartphones in power saving mode) may not respond to ping requests and may not appear in ARP tableFor a full scan, use specialized programs like Advanced IP Scanner or Angry IP Scanner.

4. Third-party network monitoring programs

If the router's built-in tools or command line seem insufficient, you can use third-party utilities. They offer advanced features: real-time traffic monitoring, notifications about new devices, scheduled blocking, and even geolocation of connected devices (based on a database). MAC addresses).

Here are the top 3 programs for different platforms:

Program Platform Peculiarities Link
Advanced IP Scanner Windows
  • Scans your local network in seconds.
  • Shows the manufacturer by MAC address.
  • Can shut down computers remotely.
Official website
Fing Android, iOS, Windows, macOS
  • Mobile application with user-friendly interface.
  • Tests internet speed across devices.
  • Detects hidden cameras and smart devices.
App Store / Google Play
Wireless Network Watcher Windows
  • Saves connection history.
  • Exports reports to CSV.
  • Works without installation (portable version).
NirSoft

Example of working with Fing:

  1. Install the application and open it.
  2. Click Scan — the program will automatically detect your network.
  3. After 10-20 seconds, you will see a list of devices indicating:
    • 📱 Name (if available).
    • 🔗 MAC addresses and the manufacturer.
    • 📡 Wi-Fi signal (for wireless devices).
    • ⚡ Traffic consumption (in the premium version).
  • Click on an unknown device to see additional information: open ports, possible vulnerabilities, and even its approximate location (based on signal strength).
  • ⚠️ Attention: Some antiviruses (for example, Kaspersky or ESET) may block network scanning, interpreting it as an attack. Disable network protection in your antivirus settings while scanning.

    Write down its MAC address and name (if any)

    Check if it belongs to your guests or IoT gadgets

    Try disabling it through the router control panel.

    Change your Wi-Fi password if you have too many connections

    Enable MAC address filtering-->

    Found a strange device on your network? Don't rush to change your Wi-Fi password—you can first block just that device by MAC addressThis is convenient if you don't want to disconnect all users (for example, in an office or a large family). Here's how:

    1. Log in to the router control panel (instructions in Section 1).
    2. Go to Advanced settings (Advanced) → Security (Security) → MAC address filtering (MAC Filtering).
    3. Enable filtering by selecting the option Allow only specified (Allow Only Listed) or Block specified (Deny Listed).
    4. Add MAC address Add the unwanted device to the list and save the settings. Example address: 00:1A:2B:3C:4D:5E.
    5. Restart your router for the changes to take effect.
    6. If filtering by MAC If this doesn't work (some devices can spoof addresses), use alternative methods:

      • 🔒 Change your Wi-Fi password complex (at least 12 characters, with numbers and special characters). Use generators like LastPass or 1Password.
      • 🔄 Disable WPS — this function is easy to hack even without a password. Find the option in the section Wi-Fi Protected Setup and deactivate it.
      • 🛡️ Enable guest network For temporary users (guests, smart devices). It is isolated from the main network and has a separate password.

      For models D-Link with support 802.11ac (For example, DIR-882 or DIR-1960) the function is available Temporary access (Schedule). It allows you to restrict Wi-Fi access according to a schedule—for example, turning off the internet at night when everyone is asleep, thereby blocking unauthorized connections.

      6. Hidden Connections: How to Find Invisible Devices

      Sometimes the list of connected devices doesn't show all gadgets. This can happen for several reasons:

      • 🕵️ The device is connected but inactive (for example, a smartphone in sleep mode).
      • 🔌 The gadget uses a static IP not obtained via DHCP.
      • 👻 Hacker software disguises its presence on the network.

      To identify such connections, use one of the methods:

      1. View DHCP clients:
        • In the router control panel, go to LANDHCP ServerDHCP Clients List.
        • This will display all devices that the router has assigned an IP address to, even if they are currently turned off.
      2. Router log analysis:
        • In the section System tools (System Tools) find Logs (Logs).
        • Search for posts with Associated (connected) or Disassociated (disabled). Example line:
          [Wi-Fi] STA 00:1A:2B:3C:4D:5E Associated
    7. Port scanning:
      • Use the program Zenmap (graphic version nmap) to scan the local network for open ports.
      • Unexpected open ports (eg. 22, 3389) may indicate the connection of hacker tools.

    If you detect suspicious activity (for example, a device with MAC address manufacturer TP-Link, although you don’t have such gadgets), we recommend:

    • 🔍 Check your router for malware using D-Link Firmware Checker (available on the official website).
    • 🔄 Update your router firmware to the latest version (in the section System toolsSoftware update).
    • 🛡️ Install an antivirus with network protection on all your devices (for example, Bitdefender Total Security).
    How do hackers disguise their devices on the network?

    Some malware spoofs the MAC address of one of your devices (such as a TV or printer) to remain undetected. To detect such a connection, temporarily disconnect all your devices from the network and check if the "suspected" device still appears on the list. If so, it's definitely someone else's device.

    7. Prevention: How to protect Wi-Fi from unauthorized access

    The best way to combat unauthorized connections is to prevent them. Here's a checklist for setting up your router. D-Link For maximum safety:

    Use WPA3 encryption (or WPA2 if WPA3 is not supported)

    Disable SSID broadcast (hide network name)

    Enable MAC address filtering for known devices

    Update your router firmware to the latest version

    Disable Remote Management

    Change the default IP address of the router (for example, to 192.168.10.1)-->

    Additional protective measures:

    • 🔐 Change your Wi-Fi password regularly (Once every 3-6 months). Use password managers to generate complex combinations.
    • 📡 Set up a separate guest network for friends and smart devices. Limit its speed and access to local resources (printers, network drives).
    • 🕒 Use a Wi-Fi schedule, if the Internet is needed only during certain hours (for example, from 7:00 to 23:00).
    • 🔄 Enable automatic firmware updates (if available). This closes vulnerabilities that hackers could exploit.

    For models D-Link with support AiProtection (For example, DIR-X1560) additional functions are available:

    • 🛡️ Defense against attacks: blocking password guessing attempts, protection from ARP-spoofing.
    • 📊 Traffic monitoring: alerts about suspicious activity (for example, downloading torrents by an unknown device).
    • 👤 Parental control: restricting access to certain websites for individual devices.

    If your router does not support modern security protocols (for example, an outdated model DIR-300), consider upgrading. New routers D-Link (series EXO or COVR) are equipped with a built-in antivirus and intrusion detection system (IDS).

    Is it possible to find out who is connected to my Wi-Fi if I am not the router admin?

    No, without access to the router's control panel or special network permissions, you won't be able to get a full list of connected devices. However, you can scan your local network from your computer (see Section 3), but this will only show active devices that respond to requests.

    What should I do if my router (192.168.0.1) is shown in the list of devices? Is this normal?

    Yes, that's normal. Router. D-Link It is also displayed in the list of connected devices as a gateway. MAC address usually starts with a manufacturer prefix (eg 00:05:5D or 00:13:3B For D-Link).

    How to distinguish your device from someone else's by MAC address?

    First 6 characters MAC addresses (For example, 00:1A:2B) indicate the manufacturer. Check them through the service MAC Vendors. For example:

    • 00:1A:79Apple.
    • 3C:5A:B4Google (Pixel, Nest).
    • 78:31:C1Xiaomi.
    • 00:05:5DD-Link (the router itself).

    If the address does not match your gadgets, it is a third-party device.

    Is it possible to block a device by IP instead of MAC?

    Technically yes, but it's unreliable. IP addresses on the local network are assigned dynamically (via DHCP), and the device may receive a different IP address the next time it connects. Blocking by MAC address more efficient, since it is tied to the gadget's network card. However, some devices allow you to replace MAC, so for reliability, combine blocking with other measures (changing the password, disabling WPS).

    Why does the device still connect after blocking the MAC address?

    Possible reasons:

    1. The device is replacing MAC address (this can be done in Android/iOS settings or through special programs).
    2. Filtration MAC is not enabled or configured incorrectly (check the section MAC Filtering in the router panel).
    3. The router did not reboot after applying the settings (always reboot after making changes!).
    4. The device connects via a guest network, which is not subject to filtering rules.

    Solution: Change your Wi-Fi password and disable WPS. If the issue persists, update your router's firmware.