Wednesday, January 18, 2017

How to configure Static routing in Linux

How to configure Static routing in Linux

Static routes will be added usually through “route add” or “ip route” command. However, “route add” command configures routing on the runtime and doesn’t persist the configuration after a reboot. To make it persistent across reboots, you have to add it to /etc/sysconfig/network-scripts/route-<interface-file> . For example, static routes for the eth0 interface would be stored in the /etc/sysconfig/network-scripts/route-eth0 file. Here are the Steps to configure static routing in Linux.

To add static route using “route add” in command line:

To add static route using “ip route” command:

Adding Persistent static route:

You need to edit /etc/sysconfig/network-scripts/route-eth0 file to define static routes for eth0 interface. This configuration will be persistent even after the server is rebooted.

Save and close the file. Restart networking:

There are various ways to verify the routing table in Linux. Few commands are listed below:



  http://www.cloudibee.com/static-route-linux/

No comments:

Post a Comment