Trying to wrap my head around eBPG config as it is new to me. I've been through the practice lab provided a couple of times now and something still isn't clear.
The commands to configure the lab are as follows...
router bgp 65534
network 11.22.33.0 mask 255.255.255.192
neighbor 172.14.0.3 remote-as 64000
neighbor 172.14.0.3 local-as 32000
neighbor 172.14.0.3 prefix-list OUT out
The prefix-list commands excluded..
Can someone explain to be why there are three AS numbers listed? 65534, 64000, and 32000 ? I get that 64000 is the AS of the remote device you want to peer with, but why the 65534 and 32000 AS numbers for the local device?
Toward the end of the lab they mention what the routing table would look like of the device peer at IP 172.14.0.3....
*> 11.22.33.0/26 172.14.0.2 0 0 32000 65534 i
-Adam