
It’s easy to change your IP address using a graphic interface, but did you know that Linux also lets you change your network card’s IP address using a simple command from the command line?
ifconfig
at the terminal prompt, and then hit Enter. This command lists all
network interfaces on the system, so take note of the name of the
interface for which you want to change the IP address.
To change the settings, you also use the ifconfig command, this time with a few additional parameters. The following command changes the network interface named “eth0” to use the IP address 102.168.0.1, and assigns the subnet mask 255.255.255.0:
sudo ifconfig eth0 192.168.0.1 netmask 255.255.255.0

You could, of course, substitute in whatever values you want. If you run ifconfig again, you will see that your interface has now taken on the new settings you assigned to it.

If you also need to change the Default Gateway used by the network interface, you can use the route command. The following command, for example, sets the default gateway for the “eth0” interface to 192.168.0.253:
sudo route add default gw 192.168.0.253 eth0

To see your new setting, you will need to display the routing table. Type the following command at the prompt, and then hit Enter:
route -n

Post a Comment