How to find your router’s default gateway IP address?
- AuthorPosts
- June 5, 2019 at 4:42 AM #1534
Santhosh Kumar D
Keymaster@santhoshIt’s necessary to know your router’s LAN IP address. When you first bought your router, you visited this IP address to configure your router. It should look something like http://192.168.1.1 depending on the type of router. You can find your internal IP address using the following steps:
Windows
Open Command Prompt and type the following command:
ipconfig | findstr /i "Gateway"
You should see something like this:
C:\Documents and Settings\administrator>ipconfig | findstr /i "Gateway"
Default Gateway . . . . . . . . . : 192.168.1.1
Linux:
Open a Terminal and type the following command:
ip route | grep default
Your output will be something like this:
joe$ ip route | grep default
default via 192.168.1.1 dev eth0 proto static
Mac OS X:
Open the Terminal.app and type the following command:
netstat -nr | grep default
You will see something like this:
joe$ netstat -nr | grep default
default 192.168.1.1 UGSc 50 46 en1
All the above examples show that the default gateway IP address is 192.168.1.1.
June 5, 2019 at 4:51 AM #1536Ragu
Moderator@raguraman-mBut this shows only the IPv6 address for me. How do I get the router’s IPv4 instead?
June 5, 2019 at 4:55 AM #1540Ken
Moderator@karthikeyankcYou could ignore the parameters and simply use
ipconfig
. Or if you prefer a different approach, you can right click on your connection from your Network and Sharing Center and click on Details… to view the same details you’d see withipconfig
. Something like this!
- AuthorPosts
Advertisement
RECENT TIPS
- How to send email as an alias in Gmail?
- How to stop Google from tracking your location?
- Command to check the Ubuntu version
- How to add a percentage in Excel?
- How to convert currencies in Google Sheets?
- How to voice type on Google Docs?
- What is Django framework?
- How to turn Google Assistant off?
- How to check the Python version?
- How to create a virtual environment in Python?
- How to change the directory in the Command Prompt?
- How to add a shortcode in WordPress PHP template file?
- Useful websites to research stocks
- How to check Linux uptime?
- How to check Linux last reboot time?