LuizPuppin
Reply mrod Created Jan 23, 2020 20:01:28
(0)
(0)
The only form to use two ASN on the same equipment is this command. Example. If your router uses ASN 300 and needs to establish a session with another router, but simulating that uses ASN 400, you need to configure like this: BGP 300 peer x.x.x.x as-number 400 peer x.x.x.x fake-as 400
LuizPuppin
Reply mrod Created Jan 23, 2020 20:12:19
(0)
(0)
Well, then you cannot do an iBGP session using this feature... |
LuizPuppin
Reply mrod Created Jan 23, 2020 20:01:28
(0)
(0)
The only form to use two ASN on the same equipment is this command. Example. If your router uses ASN 300 and needs to establish a session with another router, but simulating that uses ASN 400, you need to configure like this: BGP 300 peer x.x.x.x as-number 400 peer x.x.x.x fake-as 400
LuizPuppin
Reply mrod Created Jan 23, 2020 20:12:19
(0)
(0)
Well, then you cannot do an iBGP session using this feature... |
ejcastriver
Reply mrod Created Jan 23, 2020 20:46:12
(0)
(0)
Fake-as can only be used between EBGP peers. Is there a specific reason why you need to have a private IBGP session?
ejcastriver
Reply mrod Created Jan 23, 2020 22:08:05
(0)
(0)
@mrod another option is to use BGP Confederation, it wasn't developed for this purpose but can help you to achieve what you're looking for. *NE20 Config bgp 64513 router-id r.r.r.r confederation id 200 <- Your public AS number peer i.i.i.i as-number 64513 <- Mitigation system IP peer e.e.e.e as-number 100 <- Config for EBGP peers # ipv4-family unicast undo synchronization peer e.e.e.e enable peer i.i.i.i enable peer i.i.i.i next-hop
ejcastriver
Reply ejcastriver Created Jan 23, 2020 22:09:38
(0)
(0)
*Mitigation system config bgp 64513 peer i.i.i.i as-number 64513 *EBGP peers config bgp 100 peer e.e.e.e as-number 200 Although, I think is simpler if you can just run a private BGP session with your mitigation system. |
|