If you need to find or change the IP address of your default gateway or router on Linux, you're in luck—it's super easy to do. This wikiHow article will show you how to use the route command to find the default gateway IP address on Linux, and how to set a new default gateway in your /etc/network/interfaces configuration file.
Steps
-
Open the Terminal. You can open the Terminal from the side bar, or by pressing Ctrl + Alt + T . [1] X Research source
-
View your current default gateway. You can check what your default gateway is set to by typing route and pressing ↵ Enter . The address next to "default" shows your default gateway, and the interface it is assigned to is displayed on the right side of the table.Advertisement
-
Delete your current default gateway. If you have more than one default gateway set, you'll run into connection conflicts. Delete your existing default gateway if you intend to change it.
- Type sudo route delete default gw IP Address Adapter . For example, to delete the default gateway 10.0.2.2 on the eth0 adapter, type sudo route delete default gw 10.0.2.2 eth0 .
-
Type . sudo route add default gw IP Address Adapter . For example, to change the default gateway of the eth0 adapter to 192.168.1.254, you would type sudo route add default gw 192.168.1.254 eth0 . [2] X Research source You'll be prompted for your user password in order to complete the command.
-
Open the configuration file in an editor. Type sudo nano /etc/network/interfaces to open the file in the nano editor. Editing your configuration file will keep your changes every time the system restarts. [3] X Research source
-
Navigate to the correct section. Find the section for the adapter you want to change the default gateway for. For a wired connection, this is usually eth0 .
-
Add . gateway IP Address to the section. For example, type gateway 192.168.1.254 to make the default gateway 192.168.1.254. [4] X Research source
-
Save your changes and exit. Press Ctrl + X and then Y to save your changes and exit.
-
Restart your network. Restart your network by typing sudo /etc/init.d/networking restart . [5] X Research source
Community Q&A
-
QuestionWill the admins know if I change my IP?Community AnswerYes, if they chose to check.
Video
Tips
References
- ↑ https://linuxhint.com/how-to-open-ubuntu-terminal-keyboard-shortcuts/
- ↑ https://www.cyberciti.biz/faq/linux-setup-default-gateway-with-route-command/
- ↑ https://help.ubuntu.com/community/NetworkConfigurationCommandLine
- ↑ https://help.ubuntu.com/community/NetworkConfigurationCommandLine
- ↑ https://help.ubuntu.com/community/NetworkConfigurationCommandLine
About This Article
1. Open a terminal window.
2. Type "sudo route delete default gw (IP)
(Adapter)
" and press Enter
.
3. Type "sudo route add default gw (IP)
(Adapter)
" and press Enter
.
4. Open /etc/network/interfaces in a text editor.
5. Update the gateway IP address for the adapter.
6. Save your changes and exit the editor.
7. Type "sudo /etc/init.d/networking restart" and press Enter
.