Ubuntu Linux Configure Gateway / Default Routing IP Address

by Vivek Gite on May 13, 2008 · 2 comments

Q. How do I configure default router or gateway IP address under Ubuntu Linux / Debian Linux? How do I change default router / gateway IP under Ubuntu Linux?

A. You can easily configure default router or gateway IP address under Debian / Ubuntu Linux by editing /etc/network/interfaces network configuration file. This file defines how you configure and how your system is connected to the network.

Ubuntu Linux Configure Default Gateway

Open /etc/network/interfaces file:
$ sudo vi /etc/network/interfaces
Set gateway using following syntax:
gateway {router-ip}
For example, set gateway to 192.168.1.254, enter:
gateway 192.168.1.254
At the end it should look like as follows:
iface eth0 inet static
address 192.168.1.1
netmask 255.255.255.0
gateway 192.168.1.254

Save and close the file. Restart networking:
$ sudo /etc/init.d/networking restart
Verify new routing is working, enter:
$ ping 192.168.1.254
$ route -n
$ host google.com

Featured Articles:

Share this with other sys admins!
Facebook it - Tweet it - Print it -

{ 2 comments… read them below or add one }

1 john August 4, 2009

Dear all,

i am using ubanto 9.04 on virtual box,i have usb internet connection,is it possible to use it with ubanto.please reply

Regards
john

Reply

2 dawit August 11, 2011

this site really to answer the need of me

Reply

Leave a Comment

You can use these HTML tags and attributes for your code and commands: <strong> <em> <ol> <li> <u> <ul> <blockquote> <pre> <a href="" title="">
What is 13 + 8 ?
Please leave these two fields as-is:
Solve the simple math so we know that you are a human and not a bot.




Previous post:

Next post: