Creating static routes in RHEL 4.
Monday, October 31st, 2005
It looks as though many people are hitting my site looking for information on setting up static routes in Red Hat Enterprise Linux 4. Previously in on of my earlier entries covered setting up static routes with a metric, this is entry is just for setting up static routes. You could always add them manually, however below is a recipie for making them persistant.
For each device, (say eth0) create the file: /etc/sysconfig/network-scripts/route-eth0
And the contents should be something like:
10.0.1.0/24 via 192.168.2.4 dev eth0
10.0.4.0/24 via 192.168.2.2 dev eth0
If you have devices, make one for each device, and modify the line above to match that device.
The syntax is pretty straight forward, and I believe you can expand the “/24″ out to be a full netmask. The keen eye will realise that this is basically an interface to the “ip” tool. There are other cool things you can do with routing, for more information check out the “man ip” command.
von
http://blog.subverted.net/?cat=1
oder mit 'system-config-network' falls du eine graphische konsole hast.