<div dir="ltr">On Tue, Aug 19, 2008 at 11:32 AM, ABBAS KHAN <span dir="ltr"><<a href="mailto:bashukhan@gmail.com">bashukhan@gmail.com</a>></span> wrote:<br><div class="gmail_quote"><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div dir="ltr">Thanks Bob for the additional tip :)<div><div></div><div class="Wj3C7c"><br><br><br><br><br><div class="gmail_quote">On Tue, Aug 19, 2008 at 9:28 AM, Bob Beers <span dir="ltr"><<a href="mailto:bob.beers@gmail.com" target="_blank">bob.beers@gmail.com</a>></span> wrote:<br>

<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">IIANM, you can also use /etc/sysconfig/network-scripts/route-eth*, no?<br>
<br>
Take a look at /etc/sysconfig/network-scripts/ifup-routes script.<br>
<font color="#888888"><br>
-Bob<br>
</font><div><div></div><div>_______________________________________________<br>
CentOS mailing list<br>
<a href="mailto:CentOS@centos.org" target="_blank">CentOS@centos.org</a><br>
<a href="http://lists.centos.org/mailman/listinfo/centos" target="_blank">http://lists.centos.org/mailman/listinfo/centos</a><br>
</div></div></blockquote></div><br></div></div></div>
<br>_______________________________________________<br>
CentOS mailing list<br>
<a href="mailto:CentOS@centos.org">CentOS@centos.org</a><br>
<a href="http://lists.centos.org/mailman/listinfo/centos" target="_blank">http://lists.centos.org/mailman/listinfo/centos</a><br>
<br></blockquote></div><br>How many NICs?<br>SELinux?<br><br>When you have SELinux, two NICs each that would use two different gateways, system-config-network is worthless whether using the GUI or text based one.  The route will not stay permanent.  ifup would not process either route.ethX nor ethX.route - at least not enough for it to show in route.  Had to set the routes in /etc/rc.local.   Of course, you can't set two default gateways, but you can add two routes via something like the following:<br>
<br>
route add -net <a href="http://0.0.0.0">0.0.0.0</a> netmask <a href="http://0.0.0.0">0.0.0.0</a> gw     a.b.c.d    dev eth0<br>
route add -net <a href="http://0.0.0.0">0.0.0.0</a> netmask <a href="http://0.0.0.0">0.0.0.0</a> gw     w.x.y.z    dev eth1<br>
<br></div>