RE: Static Routes in Redhat 8.0

2003-03-31 Thread Michael Mansour
28, 2003 9:01 AM To: [EMAIL PROTECTED] Subject: Re: Static Routes in Redhat 8.0 Is the use of these two files documented somewhere by RedHat? I have purchased many books on RedHat Linux and they don't cover the topic to any depth. BTW I also have this file. The entry seems

RE: Static Routes in Redhat 8.0

2003-03-30 Thread Tapang, Roderick Eugenio (GXS)
check this bug report: https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=75604 -Original Message- From: Gary Applin [mailto:[EMAIL PROTECTED] Sent: Friday, March 28, 2003 9:01 AM To: [EMAIL PROTECTED] Subject: Re: Static Routes in Redhat 8.0 Is the use of these two files

Re: Static Routes in Redhat 8.0

2003-03-28 Thread Hal Burgiss
On Fri, Mar 28, 2003 at 12:23:25PM +0800, Tapang, Roderick Eugenio (GXS) wrote: u need to create it - like the /etc/sysconfig/static-routes file Why, my system is working fine as is ? :-) [EMAIL PROTECTED] root]# cat /etc/sysconfig/networking/devices/eth0.route FWIW, I don't have

RE: Static Routes in Redhat 8.0

2003-03-28 Thread Tapang, Roderick Eugenio (GXS)
ok, so do you have any idea how i can use my eth0.route entries via /etc/sysconfig/static-routes? -Original Message- From: Hal Burgiss [mailto:[EMAIL PROTECTED] Sent: Friday, March 28, 2003 7:06 AM To: [EMAIL PROTECTED] Subject: Re: Static Routes in Redhat 8.0 On Fri, Mar 28

Re: Static Routes in Redhat 8.0

2003-03-28 Thread Gary Applin
- Original Message - From: Tapang, Roderick Eugenio (GXS) [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, March 27, 2003 11:23 PM Subject: RE: Static Routes in Redhat 8.0 u need to create it - like the /etc/sysconfig/static-routes file [EMAIL PROTECTED] root]# cat /etc

RE: Static Routes in Redhat 8.0

2003-03-27 Thread Tapang, Roderick Eugenio (GXS)
Applin [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 26, 2003 11:17 AM To: [EMAIL PROTECTED] Subject: Re: Static Routes in Redhat 8.0 Ben, No I did not. I did however, reboot the box. Gary - Original Message - From: Ben Russo [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent

Re: Static Routes in Redhat 8.0

2003-03-27 Thread Hal Burgiss
On Thu, Mar 27, 2003 at 05:02:28PM +0800, Tapang, Roderick Eugenio (GXS) wrote: RHL 8 doesn't read /etc/sysconfig/static-routes anymore (correct me if i'm wrong). Wrong! It reads mine (same file and syntax as 7.x). See: /usr/share/doc/initscripts-6.95/sysconfig.txt. -- Hal Burgiss --

RE: Static Routes in Redhat 8.0

2003-03-27 Thread Tapang, Roderick Eugenio (GXS)
well, it doesn't read mine. i'm using the same static routes from my 7.3 system. only the rc.local approach worked for me. -Original Message- From: Hal Burgiss [mailto:[EMAIL PROTECTED] Sent: Thursday, March 27, 2003 6:56 AM To: [EMAIL PROTECTED] Subject: Re: Static Routes in Redhat

RE: Static Routes in Redhat 8.0

2003-03-27 Thread Tapang, Roderick Eugenio (GXS)
here's something: the file: [EMAIL PROTECTED] root]# cat /etc/sysconfig/networking/devices/eth0.route contains: route add -net 10.24.208.1 netmask 255.255.255.255 dev eth0 route add -net 10.24.208.128 netmask 255.255.255.128 dev eth0 route add -net 0.0.0.0 gw 10.24.208.1 netmask 0.0.0.0 dev

Re: Static Routes in Redhat 8.0

2003-03-27 Thread Hal Burgiss
On Thu, Mar 27, 2003 at 09:12:45PM +0800, Tapang, Roderick Eugenio (GXS) wrote: here's something: the file: [EMAIL PROTECTED] root]# cat /etc/sysconfig/networking/devices/eth0.route FWIW, I don't have this file (or similar) on my system. Only /etc/sysconfig/static-routes. -- Hal

RE: Static Routes in Redhat 8.0

2003-03-27 Thread Tapang, Roderick Eugenio (GXS)
u need to create it - like the /etc/sysconfig/static-routes file [EMAIL PROTECTED] root]# cat /etc/sysconfig/networking/devices/eth0.route FWIW, I don't have this file (or similar) on my system. Only /etc/sysconfig/static-routes. -- Hal Burgiss -- redhat-list mailing

Re: Static Routes in Redhat 8.0

2003-03-26 Thread Ben Russo
Gary Applin wrote: Can someone point me to info on static routes in RedHat 8.0? I have tried to enter them in the /etc/sysconfig/static-routes using the systax from RH 7X. This does not seem to work. They do not show up with a netstat -nr. Any help would be appreciated. after adding the

Re: Static Routes in Redhat 8.0

2003-03-26 Thread Gary Applin
Ben, No I did not. I did however, reboot the box. Gary - Original Message - From: Ben Russo [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, March 26, 2003 11:00 AM Subject: Re: Static Routes in Redhat 8.0 Gary Applin wrote: Can someone point me to info on static routes

Re: Static Routes in Redhat 8.0

2003-03-26 Thread Ben Russo
- Original Message - From: Ben Russo [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, March 26, 2003 11:00 AM Subject: Re: Static Routes in Redhat 8.0 Gary Applin wrote: Can someone point me to info on static routes in RedHat 8.0? I have tried to enter them in the /etc/sysconfig

RE: Static Routes

2003-03-25 Thread christopher cuse
Hi Ian, check /etc/sysconfig/static-routes cheers Christopher CUSE RHCE/CCNA -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Ian Dobson Sent: Tuesday, March 25, 2003 11:27 AM To: [EMAIL PROTECTED] Subject: Static Routes where is the correct place to add

RE: static-routes with RH8.0

2003-01-21 Thread Rick Carroll
The shell code from /etc/init.d/network # Add non interface-specific static-routes. if [ -f /etc/sysconfig/static-routes ]; then grep ^any /etc/sysconfig/static-routes | while read ignore args ; do /sbin/route add -$args done fi It only

RE: static-routes with RH8.0

2003-01-21 Thread Toshi Esumi
Rick, Thanks. It finally worked. I put any net 10.0.254.248 gw 63.214.2.234 netmask 255.255.255.252 in the static-routes file under /usr/sysconfig/. In other words, to add specific route on to a specific interface, I probably need to put the same info in a different place, I guess, as

RE: static-routes with RH8.0

2003-01-20 Thread Toshi Esumi
, is this described in someware like a man page or in a doc? Toshi -Original Message- From: Matthew Melvin [mailto:[EMAIL PROTECTED]] Sent: Sunday, January 19, 2003 4:11 PM To: Toshi Esumi Cc: '[EMAIL PROTECTED]' Subject: Re: static-routes with RH8.0 On Fri, 17 Jan 2003 at 3:46pm (-0800), Toshi Esumi

Re: static-routes with RH8.0

2003-01-20 Thread Matthew Melvin
On Fri, 17 Jan 2003 at 3:46pm (-0800), Toshi Esumi wrote: Does someone have the same experience with RH8.0? I put a static router statement in /etc/sysconfig/static-routes file as I did with RH7.0. But it doesn't seem to work when I reboot the PC. It takes the same static route when I put it

Re: static-routes with RH8.0

2003-01-20 Thread John Horne
On Mon, 2003-01-20 at 00:11, Matthew Melvin wrote: On Fri, 17 Jan 2003 at 3:46pm (-0800), Toshi Esumi wrote: Does someone have the same experience with RH8.0? I put a static router statement in /etc/sysconfig/static-routes file as I did with RH7.0. But it doesn't seem to work when I

Re: static-routes with RH8.0

2003-01-17 Thread Ted Gervais
On Friday 17 January 2003 07:46 pm, Toshi Esumi wrote: I seem to have the same problem. My /etc/sysconfig/static-routes file has 4 lines of routes in it but none of them show up when I run 'route -n '. I need to enter them manually for them to 'take' or show. Anyone have any ideas as to why

Re: static-routes with RH8.0

2003-01-17 Thread John Horne
On Sat, 2003-01-18 at 00:24, Ted Gervais wrote: On Friday 17 January 2003 07:46 pm, Toshi Esumi wrote: I seem to have the same problem. My /etc/sysconfig/static-routes file has 4 lines of routes in it but none of them show up when I run 'route -n '. I need to enter them manually for them

Re: static-routes with RH8.0

2003-01-17 Thread Brent Canipe
Hey Toshi, What is your ifconfig output? Brent *** REPLY SEPARATOR *** On 1/17/03 at 3:46 PM Toshi Esumi wrote: Does someone have the same experience with RH8.0? I put a static router statement in /etc/sysconfig/static-routes file as I did with RH7.0. But it doesn't seem to

Re: Static routes get ignored

2000-09-16 Thread Brian Ashe
Hi Peter, Well at least one place to check is /etc/sysctl.conf Make sure there is a line like this net.ipv4.ip_forward = 1 to enable packet forwarding. Otherwise, you should post more about your configuration to get more help. There are quite a few differences between 6.0 and 6.2. Not major

Re: static routes?

2000-03-01 Thread Perry J. Blalock
That, or just use route add etc... to your rc.local file there is a file /etc/sysconfig/static-routes Does anyone know the format of entries for this file? I need to add some routes and take it that they should be put in here? Thanks Darryl -- To unsubscribe: mail [EMAIL

Re: static routes?

2000-03-01 Thread Steve Lee
eth2 net 207.113.56.1 netmask 255.255.255.255 gw 207.113.56.129 eth2 n default gw 207.113.56.1 here is mine. replace 207.113.56.1 with your gateway, your isp. 207.113.56.129 is my gateway for the internal lan. hope that helps Darryl Harvey wrote: there is a file