What an IP address tells you and why you might need it

An IP address is a number assigned to every device on your network — your computer, phone, printer, security camera, or anything else connected to your router. It looks like four numbers separated by dots, such as 192.168.1.5. If you know a device's IP address, you can find it on your network, connect to it remotely, or troubleshoot why it stopped working.

You might need to find a computer by IP address for several reasons: a family member's laptop went offline and you want to restart it from another room, you set up a new printer and need to access its settings, or you spotted an unfamiliar device on your network and want to know what it is. The method depends on whether you're looking for a device on your own network or trying to locate a computer somewhere else on the internet — the second one is much harder and usually not possible without that computer's owner's permission.

This guide covers finding devices on your home network, which is what you can actually do. Finding a computer on someone else's network or on the public internet requires different tools and raises legal questions we won't cover here.

Key Takeaways

  • Your router's admin page shows every device connected to your network and its IP address, and is the fastest way to find what you're looking for.
  • On Windows, the Command Prompt command arp -a lists all devices on your network and their IP addresses without needing to log into your router.
  • On Mac or Linux, the terminal command arp -a does the same thing, or you can use nmap if you want more detail about each device.
  • Once you have an IP address, you can ping it to check if the device is online, or use remote access software to connect to it if the device allows it.
  • If you find an IP address you don't recognize, check your router's settings to see what device it is or block it from your network.

Checking your router's admin page for all connected devices

Your router keeps a list of every device currently connected to it, along with each device's IP address and often its name. This is the easiest place to look first because you don't need to use command-line tools.

Open a web browser and type your router's address into the address bar. Most home routers use 192.168.1.1 or 192.168.0.1 — check the sticker on the back or bottom of your router if you're not sure. You'll be asked to log in. The default username and password are usually printed on the router itself, though many people change these during setup. If you changed yours and don't remember it, you can reset the router to factory settings by holding a small reset button for 10 seconds, but this will erase your custom settings.

Once you're logged in, look for a section called "Connected Devices," "Device List," "DHCP Clients," or "LAN Devices" — the exact name varies by router brand. This page shows every device on your network, its IP address, and often its device name or MAC address. If you see a device you don't recognize, note its IP address and MAC address, then search online for that MAC address to find out what manufacturer made it.

Using Windows Command Prompt to list all network devices

If you prefer not to log into your router, you can see all devices on your network from your Windows computer using a built-in tool called Command Prompt. This method works on any Windows version and doesn't require any software installation.

Press the Windows key and type cmd, then press Enter to open Command Prompt. Type the command arp -a and press Enter. You'll see a list of all devices currently connected to your network, with their IP addresses and MAC addresses. The device names won't show up in this list — you'll only see numbers — but you can cross-reference the IP address with what you see in your router's admin page to identify which device is which.

If the list is long and you're looking for a specific device, you can narrow it down by IP range. Most home networks use addresses starting with 192.168, so devices outside that range are usually not on your network. If you know roughly when a device connected, devices that connected more recently often have higher IP numbers, though this isn't a hard rule.

Using Mac or Linux terminal to find devices on your network

Mac and Linux computers have a terminal process that works similarly to Windows Command Prompt. On a Mac, open Spotlight by pressing Command and Space, type terminal, and press Enter. On Linux, open your terminal process from your applications menu.

Type arp -a and press Enter. You'll see the same list of devices and IP addresses as the Windows method. If you want more information about each device — such as what operating system it's running or what ports it has open — you can use a tool called nmap. Type nmap 192.168.1.0/24 (replacing the first three numbers with your network's range if different) to scan your entire network. This takes longer but shows more detail about each device.

If nmap isn't installed, you can install it using Homebrew on Mac (type brew install nmap) or your Linux distribution's package manager. On Linux, this is usually sudo apt install nmap or sudo yum install nmap depending on your distribution.

Checking if a device is online by pinging its IP address

Once you have an IP address, you can check whether that device is currently online and responding. This is called pinging the address. On Windows, open Command Prompt, type ping 192.168.1.5 (replacing the numbers with the IP address you're checking), and press Enter. If the device is online, you'll see response messages. If it's offline or blocking ping requests, you'll see "Request timed out."

On Mac or Linux, open Terminal and type the same command: ping 192.168.1.5. Press Control and C to stop the ping after a few attempts. A successful ping means the device is online and reachable. A failed ping could mean the device is offline, the IP address is wrong, or the device is set to ignore ping requests for security reasons.

Pinging is useful for troubleshooting. If a device you expect to be online isn't responding to pings, it may have lost power, disconnected from the network, or crashed. If it responds to pings but you can't access it any other way, the problem is likely with the specific service you're trying to use, not the device itself.

Connecting to a computer remotely using its IP address

If you want to actually access a computer remotely — to see its screen, control it, or transfer files — you need remote access software installed on both the computer you're accessing and the computer you're accessing it from. The IP address alone isn't enough; the remote software needs to be running and configured to allow connections.

Windows includes a built-in tool called Remote Desktop. On the computer you want to access, open Settings, search for "Remote Desktop," and turn it on. Note the computer's IP address. On another Windows computer on the same network, open Remote Desktop Connection (search for it in the Start menu), type the IP address, and click Connect. You'll be asked for the username and password of the computer you're accessing.

For Mac-to-Mac or cross-platform access, you can use free software like TeamViewer, AnyDesk, or Chrome Remote Desktop. These work over the internet as well as your local network, so they're useful if you need to access a computer from outside your home. Install the software on both computers, set up a password or PIN, and you can connect using the IP address or the software's own ID system.

Finding and blocking unknown devices on your network

If you see an unfamiliar IP address in your router's device list, you may have an unauthorized device connected to your network. The first step is to identify what it is. Look up the MAC address (a longer number shown next to the IP address) online — search for the first six characters of the MAC address, which identify the manufacturer. This often tells you what kind of device it is, though not always which specific device.

If you don't recognize the device and can't identify it, you can block it from your router's admin page. Look for an option to block by MAC address or IP address, or to create a blacklist. Some routers call this "Device Blocking" or "Access Control." Once blocked, that device will no longer be able to connect to your network. If it was a legitimate device you forgot about, you can unblock it later.

To prevent unauthorized access in the future, make sure your router's Wi-Fi password is strong — at least 12 characters with a mix of letters, numbers, and symbols — and change the default admin password for your router itself. These two steps stop most casual attempts to access your network.

Frequently Asked Questions

Can I find a computer's IP address if it's not on my network?

Not reliably. If the computer is on the internet but not your network, you would need tools like tracert or nslookup, which only work if you know the computer's domain name (like example.com). Finding a random computer on the internet by IP address alone is not possible — IP addresses are assigned dynamically and change frequently. If you're trying to locate someone else's computer, you would need their permission and cooperation.

What if a device has a different IP address every time I check?

Your router assigns IP addresses automatically using a system called DHCP. Most devices get a new address each time they reconnect, though many routers remember devices and give them the same address. If you need a device to always have the same IP address, you can set a static IP on the device itself or create a DHCP reservation in your router's settings, which tells the router to always give that device the same address.

Is it safe to ping devices on my network?

Yes, pinging is completely safe. It sends a small harmless message asking the device to respond. It doesn't access files, change settings, or harm the device in any way. Some devices are configured not to respond to pings for security reasons, but receiving a ping request never damages anything.

Why do I see multiple IP addresses for the same device?

Some devices connect to both Wi-Fi and Ethernet at the same time, or they may have both IPv4 and IPv6 addresses. Your router's device list might show both. This is normal and not a problem. The device will use whichever connection is active at the moment.

What should I do if I find a device I don't recognize and can't identify?

Block it from your router's admin page first, then investigate. Check with everyone in your household to see if it's a guest's device. Look at your router's connection log to see when it connected. If you still can't identify it, blocking it is the safest choice — if it was legitimate, the owner will ask you about it or try to reconnect.