How to find the Router IP Address ?
Locating the IP address of a router is an essential step in managing a network, troubleshooting connectivity issues, configuring port forwarding, or accessing the web-based administrative interface. The router IP—typically the default gateway for local devices—is the address through which all outbound traffic to external networks is routed. This technical guide outlines accurate methods for identifying a router’s IP address across various operating systems and network environments, including Windows, macOS, Linux, mobile platforms, and command-line interfaces.
Most routers use a private IPv4 address within the ranges defined by RFC 1918:
- 10.0.0.0 – 10.255.255.255 (/8)
- 172.16.0.0 – 172.31.255.255 (/12)
- 192.168.0.0 – 192.168.255.255 (/16)
Common default router IPs include:
These are used by different manufacturers and ISPs depending on their configuration standards.
Methodology: Determining the Router IP Address
A. On Windows (CMD Method)
- Open Command Prompt:
Win + R→ typecmd→ press Enter - Run the command:
ipconfig - Locate the line:
Default Gateway . . . . . . . . . : 192.168.1.1
The IP listed as Default Gateway under your active network interface is your router’s IP address.
B. On macOS
- Open Terminal:
Applications → Utilities → Terminal - Run the command:
netstat -nr | grep defaultOr (modern versions):route get default - Look for:
gateway: 192.168.0.1
Alternatively, navigate to System Preferences → Network → select the active connection → click Advanced → go to the TCP/IP tab to see the router IP.
C. On Linux
- Open Terminal
- Run the command:
ip route | grep defaultOutput will include:default via 192.168.1.1 dev eth0
This confirms that 192.168.1.1 is the router IP for the system’s active network interface.
D. On Android
- Go to Settings → Wi-Fi
- Tap the connected network
- Scroll to Advanced or IP settings
The gateway entry represents the router IP.
Alternatively, use a terminal emulator with root access and run:
ip route
E. On iOS (iPhone/iPad)
- Go to Settings → Wi-Fi
- Tap the active network
- Under Router, the IP address will be shown (e.g., 192.168.0.1)
Alternative Techniques
A. Using the Web Interface
If the IP is unknown but within expected private ranges, manually try opening:
Only one will succeed, assuming you are on the same subnet.
B. Using arp Table Inspection
On a terminal (Windows, Linux, macOS), run:
arp -a
This will list IP-to-MAC address mappings of recently accessed devices on your network. The router usually appears at the lowest-numbered IP (e.g., 192.168.1.1), and its MAC address typically begins with the manufacturer’s prefix (e.g., Cisco, TP-Link, Netgear).
C. Using Network Scanning Tools
Utilities like Advanced IP Scanner, Angry IP Scanner, or nmap can identify the router:
nmap -sn 192.168.1.0/24
Then inspect the devices responding with port 80/443 open and common vendor MAC prefixes.
Common Router IP Addresses
Common Router IP Address by Vendor
| Vendor | Typical Router IP |
|---|---|
| Netgear | 192.168.0.1 |
| Linksys | 192.168.1.1 |
| TP-Link | 192.168.0.1 |
| D-Link | 192.168.0.1 |
| ASUS | 192.168.1.1 |
| Belkin | 192.168.2.1 |
| Xfinity (Comcast) | 10.0.0.1 |
| Huawei | 192.168.100.1 |
| Technicolor | 192.168.1.254 |
| MikroTik | 192.168.88.1 |
| Ubiquiti UniFi | 192.168.1.1 |
| Arris | 192.168.0.1 |