Re: ??? 2 Default Gateways ??? [7:64913]

2003-03-12 Thread Amar KHELIFI
actually in the context that has been laid out, which is 2 default static
routes with the same AD, it will load balance.;;

Network Phantom  a icrit dans le message de news:
[EMAIL PROTECTED]
 John Neiberger wrote:

  This isn't necessarily true.  It depends on your configuration and the
  source of the default routes.  Take a look at the note at the bottom
  of the
  following page for details:
 
  http://www.cisco.com/warp/public/105/default.html
 
  Regards,
  John
 
 
  Amar KHELIFI 3/10/03 9:52:27 AM 
 
  yes u can configure 2 default static routes, but it will not load
balance,
  but it will provide redundancy.
 
  Steven Aiello  a icrit dans le message de news:
  [EMAIL PROTECTED]
 
  Hello all I was just wondering if you could have 2 Default gateways,
  using static routes?  If so what would you do just enter the ip default
  route command twice?  Also will the router auto detect if one of those
  routes goes down and pass traffic only to the active interface.  I know
  you can do load balancing with routing protocols, but it seems to me
  that if you were on a stub, why would you want to run a routing
  protocol?  I'm interested in this because of a post a while back.  Any
  info would be helpful.
  
  Thanks,
  Steven
 Test




Message Posted at:
http://www.groupstudy.com/form/read.php?f=7i=65155t=64913
--
FAQ, list archives, and subscription info: http://www.groupstudy.com/list/cisco.html
Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]


??? 2 Default Gateways ??? [7:64913]

2003-03-10 Thread Steven Aiello
Hello all I was just wondering if you could have 2 Default gateways, 
using static routes?  If so what would you do just enter the ip default 
route command twice?  Also will the router auto detect if one of those 
routes goes down and pass traffic only to the active interface.  I know 
you can do load balancing with routing protocols, but it seems to me 
that if you were on a stub, why would you want to run a routing 
protocol?  I'm interested in this because of a post a while back.  Any 
info would be helpful.

Thanks,
Steven




Message Posted at:
http://www.groupstudy.com/form/read.php?f=7i=64913t=64913
--
FAQ, list archives, and subscription info: http://www.groupstudy.com/list/cisco.html
Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]


Re: ??? 2 Default Gateways ??? [7:64913]

2003-03-10 Thread John Neiberger
Hello all I was just wondering if you could have 2 Default gateways, 
using static routes?  If so what would you do just enter the ip default 
route command twice?  Also will the router auto detect if one of those 
routes goes down and pass traffic only to the active interface.  I know 
you can do load balancing with routing protocols, but it seems to me 
that if you were on a stub, why would you want to run a routing 
protocol?  I'm interested in this because of a post a while back.  Any 
info would be helpful.

Thanks,
Steven

You're probably thinking of a default route, not a default gateway, per
say.  The 'ip default-gateway' command on a router is used only when a
router is not routing IP, which is probably not the situation you're
considering.

To statically enter a default route you simply add a static route like this:

ip route 0.0.0.0 0.0.0.0 next_hop_address

If you have more than one possible default route you can add more than on
static route and the router will load balance.  If you want to prefer one
over the other you can change the administrative distance.

ip route 0.0.0.0 0.0.0.0 primary_default_ip
ip route 0.0.0.0 0.0.0.0 secondary_default_ip 50

In this example, the primary and secondary default routes have ADs of 1 and
50, respectively.  The route with the lowest AD will be prefered as long as
it is valid.  Should the next hop address not be available the router will
begin using the secondary route.

Does that answer your question?

Regards,
John




Message Posted at:
http://www.groupstudy.com/form/read.php?f=7i=64915t=64913
--
FAQ, list archives, and subscription info: http://www.groupstudy.com/list/cisco.html
Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]


Re: ??? 2 Default Gateways ??? [7:64913]

2003-03-10 Thread Amar KHELIFI
yes u can configure 2 default static routes, but it will not load balance,
but it will provide redundancy.

Steven Aiello  a icrit dans le message de news:
[EMAIL PROTECTED]
 Hello all I was just wondering if you could have 2 Default gateways,
 using static routes?  If so what would you do just enter the ip default
 route command twice?  Also will the router auto detect if one of those
 routes goes down and pass traffic only to the active interface.  I know
 you can do load balancing with routing protocols, but it seems to me
 that if you were on a stub, why would you want to run a routing
 protocol?  I'm interested in this because of a post a while back.  Any
 info would be helpful.

 Thanks,
 Steven




Message Posted at:
http://www.groupstudy.com/form/read.php?f=7i=64918t=64913
--
FAQ, list archives, and subscription info: http://www.groupstudy.com/list/cisco.html
Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]


Re: ??? 2 Default Gateways ??? [7:64913]

2003-03-10 Thread Dave Jacoby
I don't think you can configure 2 default gateways.  I think you can
configure two gateways of last resort using floating static routes:

ip route 0.0.0.0 0.0.0.0 [destination address] [cost]

i.e.

ip route 0.0.0.0 0.0.0.0 10.1.1.1 90
ip route 0.0.0.0 0.0.0.0 10.1.2.1 80

It will always use the first one, unless the route is not there.

Dave

Steven Aiello  wrote in message
news:[EMAIL PROTECTED]
 Hello all I was just wondering if you could have 2 Default gateways,
 using static routes?  If so what would you do just enter the ip default
 route command twice?  Also will the router auto detect if one of those
 routes goes down and pass traffic only to the active interface.  I know
 you can do load balancing with routing protocols, but it seems to me
 that if you were on a stub, why would you want to run a routing
 protocol?  I'm interested in this because of a post a while back.  Any
 info would be helpful.

 Thanks,
 Steven




Message Posted at:
http://www.groupstudy.com/form/read.php?f=7i=64917t=64913
--
FAQ, list archives, and subscription info: http://www.groupstudy.com/list/cisco.html
Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]


Re: ??? 2 Default Gateways ??? [7:64913]

2003-03-10 Thread John Neiberger
This isn't necessarily true.  It depends on your configuration and the
source of the default routes.  Take a look at the note at the bottom of the
following page for details:

http://www.cisco.com/warp/public/105/default.html

Regards,
John

 Amar KHELIFI 3/10/03 9:52:27 AM 
yes u can configure 2 default static routes, but it will not load balance,
but it will provide redundancy.

Steven Aiello  a icrit dans le message de news:
[EMAIL PROTECTED]
 Hello all I was just wondering if you could have 2 Default gateways,
 using static routes?  If so what would you do just enter the ip default
 route command twice?  Also will the router auto detect if one of those
 routes goes down and pass traffic only to the active interface.  I know
 you can do load balancing with routing protocols, but it seems to me
 that if you were on a stub, why would you want to run a routing
 protocol?  I'm interested in this because of a post a while back.  Any
 info would be helpful.

 Thanks,
 Steven




Message Posted at:
http://www.groupstudy.com/form/read.php?f=7i=64919t=64913
--
FAQ, list archives, and subscription info: http://www.groupstudy.com/list/cisco.html
Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]


Re: ??? 2 Default Gateways ??? [7:64913]

2003-03-10 Thread Amar KHELIFI
yes indeed as per the doc, it will load balance.
i'll try it out.

John Neiberger  a icrit dans le message
de news: [EMAIL PROTECTED]
 This isn't necessarily true.  It depends on your configuration and the
 source of the default routes.  Take a look at the note at the bottom of
the
 following page for details:

 http://www.cisco.com/warp/public/105/default.html

 Regards,
 John

  Amar KHELIFI 3/10/03 9:52:27 AM 
 yes u can configure 2 default static routes, but it will not load balance,
 but it will provide redundancy.

 Steven Aiello  a icrit dans le message de news:
 [EMAIL PROTECTED]
  Hello all I was just wondering if you could have 2 Default gateways,
  using static routes?  If so what would you do just enter the ip default
  route command twice?  Also will the router auto detect if one of those
  routes goes down and pass traffic only to the active interface.  I know
  you can do load balancing with routing protocols, but it seems to me
  that if you were on a stub, why would you want to run a routing
  protocol?  I'm interested in this because of a post a while back.  Any
  info would be helpful.
 
  Thanks,
  Steven




Message Posted at:
http://www.groupstudy.com/form/read.php?f=7i=64924t=64913
--
FAQ, list archives, and subscription info: http://www.groupstudy.com/list/cisco.html
Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]