08-09-2007 08:10 AM - edited 03-03-2019 06:15 PM
I'm confused with those!
if i have R1 and ISP routers, ISP connects to the internet cloud and R1 connects to it(what is connected to R1 is or a lan or another set of routers)
so given this topology - when do i choose static route,default route or static-default route on each one of those routers??
and what does the zeros mean in this command:
>ip route 0.0.0.0 0.0.0.0 207.134.6.1
??
08-09-2007 08:25 AM
0.0.0.0 0.0.0.0 means - matching any packet.
if a packet comes to the ethernet interface of the router, the router checks the routing table to find out what to do with the packet.
packets intended for
0.0.0.0 ( All networks ) 0.0.0.0 ( All subnets )
will be forwarded to the gateway 207.134.6.1 which is the WAN interface of the ISP
08-09-2007 08:45 AM
static route - a route that's manually configured and not learned via a dynamic routing protocol.
default route (0.0.0.0/0) - any destination with any mask. It's also known as gateway of last resort.
static default route - default route that's manually configured.
The router wouldn't use the default route to forward traffic if it has a more specific route to that destination. The default route would be used to forward traffic to any destination for which the router doesn't have a specific route.
A dynamic routing protocol has some advantages which the static route doesn't offer as the name suggests it's dynamic. However, for a simple network that doesn't have multiple points of exit and for someone doesn't want to deal with hassle of enabling a dynamic routing protocol then static route might be a sufficient option.
HTH
Sundar
08-09-2007 10:54 AM
which of the routing protocols are dynamic?
(rip? igrp? etc.)
08-09-2007 11:36 AM
All the routing protocols are dynamic, RIP, IGRP, EIGRP, OSPF, IS-IS and BGP. All but BGP is internally used within an AS and BGP is used for inter-AS routing.
HTH
Sundar
08-09-2007 11:58 AM
A good way to think of a dynamic protocol is just that - it's dynamic. It will change when something on the network changes, and update itself and other routers accordingly.
A static route remains the same unless you change it.
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide