11-08-2002 09:32 AM - edited 03-02-2019 02:45 AM
I have two 2620 routers, with one currently in use with a T1 connectin from an ISP. I would like to get another T1 from a different ISP to dual home the connection for redundancy. Can two 2620 handle BGP with each one connected to different ISP and HSRP enabled? or the 64M memory will not be enough to do BGP?
TIA
Solved! Go to Solution.
11-08-2002 09:44 AM
Yes they will be able to handle it. They just won't be able to handle the full internet BGP table. So what you can do is just accept the default route from each ISP or accept partial routes from them (eg only the ISPs routes or the ISPs routes and it's directly connected customers routes).
An example for partial routes (ISPs routes only):
!
router bgp xxxx
neighbor x.x.x.x remote-as 701
neighbor x.x.x.x route-map test in
!
route-map test permit 10
match as-path 20
!
ip as-path access-list 20 permit _701$ (where 701 is your ISP's AS)
ip as-path access-list 20 deny .*
Hope it helps.
Steve
11-08-2002 09:41 AM
Depends, on whether, you want to use full internet route from the ISP. Full internet routes approx use, 72 MB of RAM, considering, memory for IO and other process, in the router, I would recommend a 128 MB. The 2620 has 2 slots for memory, but i think the max you can put on a 2620 is 64 MB, with 32 each on each slot. So if you plan to get full routes, 2620 wont be able to handle it. You might want to consider using a 2650 or 2690 or 3620 for this purpose.
11-08-2002 09:44 AM
Yes they will be able to handle it. They just won't be able to handle the full internet BGP table. So what you can do is just accept the default route from each ISP or accept partial routes from them (eg only the ISPs routes or the ISPs routes and it's directly connected customers routes).
An example for partial routes (ISPs routes only):
!
router bgp xxxx
neighbor x.x.x.x remote-as 701
neighbor x.x.x.x route-map test in
!
route-map test permit 10
match as-path 20
!
ip as-path access-list 20 permit _701$ (where 701 is your ISP's AS)
ip as-path access-list 20 deny .*
Hope it helps.
Steve
11-08-2002 09:51 AM
Thanks Steve!
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