RE: Static route /default route

2000-05-24 Thread Taylor, Don
Default routes are a type of static route, so the syntax is similar: Default route: ip route 0.0.0.0 0.0.0.0 192.168.1.1 Static route: ip route 172.16.1.0 255.255.0.0 192.168.1.1 Was that all you needed? - Don -Original Message- From: Jacques Lee [mailto:[EMAIL PROTECTED]] Sent: Wed

RE: Static route /default route

2000-05-24 Thread Ole Drews Jensen
If you want route traffic destined for network 10.0.0.0 to 172.16.0.2 and unknown networks to 192.168.16.1 you can do as follows: Router#conf t Router(config)#ip route 10.0.0.0 255.255.255.0 172.16.0.2 Router(config)#ip route 0.0.0.0 0.0.0.0 192.168.16.1 Router(config)#^Z Router# Hth, Ole

RE: Static route /default route

2000-05-24 Thread Winchester, Derek S.
Command for a Static route is: ip route 0.0.0.0 x.x.x.x 0.0.0.0, and for a Default route is: ip default-network 0.0.0.0 x.x.x.x Derek S. Winchester Sr. Wan Engineer Data Communications Department [EMAIL PROTECTED] Phone: 410-953-4887 Cell: 443-562-3456 -Original Message- From: Jacques

RE: Static route /default route

2000-05-24 Thread Stull, Cory
default isn't always static... In dynamic routing ie.. OSPF / EIGRP the command ip default-network can be used... Cory -Original Message- From: Taylor, Don [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 24, 2000 9:03 AM To: 'Jacques Lee'; [EMAIL PROTECTED] Subject: R

Re: Static route /default route

2000-05-24 Thread Jacques Lee
Thanks a lot, thats a good reminder. "Taylor, Don" wrote in message <67C8E1BFE53ED2118CEC0008C7A4B20706096915@USLAXEXC04>... >Default routes are a type of static route, so the syntax is similar: > >Default route: > >ip route 0.0.0.0 0.0.0.0 192.168.1.1 > >Static route: > >ip route 172.16.1.0 255

RE: Static route /default route

2000-05-24 Thread Chris Allen
all possibilities -c -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Ole Drews Jensen Sent: Wednesday, May 24, 2000 12:10 PM To: 'Jacques Lee'; [EMAIL PROTECTED] Subject: RE: Static route /default route If you want route traffic destined f