To find your router's IP address, follow these steps for different operating systems:
Windows OS
- Press the Windows Start button or click the Start menu.
- Type
cmd.exe
in the Start menu search box, right-click on it, and select "Run as Administrator". - In the command prompt window, type
ipconfig /all
and press Enter. Look for "Default Gateway". - For a quicker lookup, type
ipconfig | findstr /i "Default"
.
OS X
- Launch the Terminal application from the Launcher.
- Type
netstat -nr
to see all network details, ornetstat -nr | grep default
to find the router address directly.
Linux
- Type
ip route
in a terminal. - For a specific search, type
ip route | grep default
.