cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
4500
Views
30
Helpful
2
Replies

Can you have multiple BGP AS 's running simultaneously on a 3560?

Thomas Cotton
Level 1
Level 1

Hi,

 

I have a customer who's currently running one BGP AS between their core 3560 stack and their existing ISP routers, this handles the advertisement and availability of the main site, and should this stop advertising traffic would be sent to the backup site.

They're in the process of moving to another ISP and the plan was to create a second BGP AS for the new ISP so the above mentioned solution wasn't affected, however when the customer type router bgp ***** the command will not take, is this because the 3560 only supports a single BGP AS?

 

Cheers

1 Accepted Solution

Accepted Solutions

Hi Thomos,

Every device only supports single bgp session i.e. "router bgp xx" you can't use second session i.e. "router bgp yy" on the same device.

Now in your case since you need to migrate to other ISP with different BGP ASN and keep existing BGP ASN as well, you need to go for below config:

router bgp 100

neighbor e.f.g.h remote-as 300

neighbor a.b.c.d remote-as 200
neighbor a.b.c.d local-as 101

In this way you can have your current AS(100) for current ISP(300) and can make BGP session with 2nd ISP(200) with your new ASN(101).

For details, refer below link:

http://www.cisco.com/c/en/us/support/docs/ip/border-gateway-protocol-bgp/13761-39.html
 

Vivek


 

 

View solution in original post

2 Replies 2

Hi Thomos,

Every device only supports single bgp session i.e. "router bgp xx" you can't use second session i.e. "router bgp yy" on the same device.

Now in your case since you need to migrate to other ISP with different BGP ASN and keep existing BGP ASN as well, you need to go for below config:

router bgp 100

neighbor e.f.g.h remote-as 300

neighbor a.b.c.d remote-as 200
neighbor a.b.c.d local-as 101

In this way you can have your current AS(100) for current ISP(300) and can make BGP session with 2nd ISP(200) with your new ASN(101).

For details, refer below link:

http://www.cisco.com/c/en/us/support/docs/ip/border-gateway-protocol-bgp/13761-39.html
 

Vivek


 

 

Thanks Vivek, much appreciated