CentOS Add Route Command

by on March 12, 2009 · 1 comment· last updated at March 14, 2010

How do I add route (router IP 192.168.1.254) to my Centos Linux systems from the command line?

You need to use the route command or ip command to add a new route to your kernel routing table.

  • route command - show / manipulate the IP routing table
  • ip command - show / manipulate routing, devices, policy routing and tunnels

To add default gateway IP 192.168.1.254 using eth0, enter:
# route add default gw 192.168.1.254 eth0
And ip command can be used as follows
# ip route add 192.168.1.0/24 dev eth0
Edit /etc/sysconfig/network and make route persistence after reboot:
# vi /etc/sysconfig/network
Add / edit GATEWAY line as follows
GATEWAY=192.168.1.254

Further readings:



You should follow me on twitter here or grab rss feed to keep track of new changes.

Featured Articles:

{ 1 comment… read it below or add one }

1 Rizwan April 29, 2013 at 3:28 am

Bundle of Thanks

Reply

Leave a Comment

You can use these HTML tags and attributes for your code and commands: <strong> <em> <ol> <li> <u> <ul> <kbd> <blockquote> <pre> <a href="" title="">

Tagged as: , , , , , , , , , , , , ,

Previous Faq:

Next Faq: