Bruce Sterling Woodcock wrote:
----- Original Message ----- From: tkaczma@gryf.net To: toasters@mathworks.com Sent: Tuesday, November 09, 1999 3:27 PM Subject: Re: Strange routing problem
On Tue, 9 Nov 1999, Eyal Traitel wrote:
I had something a little similar I suspect... Try toggling your RIP by "routed off|on". You should also check that your /etc/rc contains something like:
route add default 223.21.95.254 1
route add net default 223.21.95.254 1
to be exact. Otherwise you're putting in a host route.
Your default route SHOULD be a host route. To the IP address of the router.
Nope. The default route is a network route by default. It is not necesary to put in the "net" keyword, the route command knows it is a network route.
# route add default 192.192.192.99 1 add net default: gateway 192.192.192.99 #netstat -rn
Routing Table: Destination Gateway Flags Ref Use Interface -------------------- -------------------- ----- ----- ------ --------- 127.0.0.1 127.0.0.1 UH 01207122 lo0 192.192.192.0 192.192.192.218 U 3 5180 hme0 224.0.0.0 192.192.192.218 U 3 0 hme0 default 192.192.192.99 UG 0 0
-Steve gremban@ti.com
Bruce