Tuesday, April 23, 2013

Change Your IP Address From the Command Line in Linux

image

Almost everybody can figure out how to change their IP address using an interface, but did you know you can set your network card’s IP address using a simple command from the command line?

Changing Your IP From the Command Line in Linux

Note: This will work on all Debian based Linux Distro’s.
To get started type ifconfig into the terminal and hit enter, take note of the name of the interface that you want to change the settings for.

To change the settings, you also use the ifconfig command, this time with a few parameters:
sudo ifconfig eth0   192.168.0.1 netmask 255.255.255.0
That’s about all all you need to do to change your IP, of course the above command assumes a few things:
  • The interface that you want to change the IP for is eth0
  • The IP you want to give the interface is 192.168.0.1
  • The Subnet Mask you want to set for the interface is 255.255.255.0

If you run ifconfig again you will see that your interface has now taken on the new settings you assigned to it.

If you wondering how to change the Default Gateway, you can use the route command.
sudo route add default gw 192.168.0.253 eth0
Will set your Default Gateway on the eth0 interface to 192.168.0.253.

To see your new setting, you will need to display the routing table.
route -n

That’s all there is to it.

No comments:

Post a Comment