-
Access global configuration
mode.
device# configure terminal
-
Access BGP configuration mode.
device(config)# router bgp
-
Specify the autonomous system in which your device resides.
device(config-bgp-router)# local-as 1000
-
Access IPv4 address family
configuration mode.
device(config-bgp-router)# address-family ipv4 unicast
-
Specify the neighbor to be a
route-reflector client.
device(config-bgp-ipv4u)# neighbor 10.1.1.1 route-reflector-client
This example configures neighbor 10.1.1.1 as a route-reflector client.
This example summarizes the commands in this
procedure.
device# configure terminal
device(config)# router bgp
device(config-bgp-router)# local-as 1000
device(config-bgp-router)# address-family ipv4 unicast
device(config-bgp-ipv4u)# neighbor 10.1.1.1 route-reflector-client