Never been to CodeSnippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world (or not, you can keep them private!)

How to set a static IP in Ubuntu from the shell (See related posts)

Edit
/etc/network/interfaces 
and adjust it to your needs (in this example setup I will use the IP address 192.168.0.100):

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback

# This is a list of hotpluggable network interfaces.
# They will be activated automatically by the hotplug subsystem.
mapping hotplug
        script grep
        map eth0

# The primary network interface
auto eth0
iface eth0 inet static
        address 192.168.0.100
        netmask 255.255.255.0
        network 192.168.0.0
        broadcast 192.168.0.255
        gateway 192.168.0.1

Comments on this post

johannes posts on May 13, 2007 at 20:40
Then do
sudo /etc/init.d/networking restart

to restart the network.
av76 posts on Jan 20, 2009 at 05:45
Did it and it worked, but when I tried to reverse the action
my network-manager is gone and I have no ip address at all :-(

What do I do now?

Thanks,
A.
compsfreak17 posts on Apr 28, 2009 at 19:36
i can't change the permissions to edit the file
help
thanks
vijayan posts on May 27, 2009 at 05:56
before vi /etc/network/interfaces
type sudo vi /etc/network/interfaces
it will ask for password, enter and edit.
nicholas987 posts on Jun 26, 2009 at 05:06
I done the whole thing right, but when executed it... Its is showing error message :-/
Is there any problem of compatibility with the OS??
cisco training.

You need to create an account or log in to post comments to this site.