Step 1 |
enable
Example:
Device> enable
|
Enables privileged EXEC mode.
|
Step 2 |
configure
terminal
Example:
Device# configure terminal
|
Enters global configuration mode.
|
Step 3 |
ipv6
unicast-routing
Example:
Device(config)# ipv6 unicast-routing
|
Enables the forwarding of IPv6 unicast datagrams.
|
Step 4 |
router
bgp
autonomous-system-number
Example:
Device(config)# router bgp 1000
|
Enters router configuration mode to create or configure a BGP routing process.
|
Step 5 | neighbor peer-group-name peer-group
Example:
Device(config-router)# neighbor rr-client-ab peer-group
| (Optional) Identifies a peer group.
|
Step 6 | neighbor {ip-address | ipv6-address} peer-group peer-group-name
Example:
Device(config-router)# neighbor 192.168.3.3 peer-group rr-client-ab
| (Optional) Configures a BGP neighbor to be a member of a peer group.
|
Step 7 |
neighbor {ip-address
| ipv6-address | peer-group} remote-as as-number
Example:
Device(config-router)# neighbor rr-client-ab remote-as 3000
|
Identifies the AS of the neighbor or peer group.
|
Step 8 |
neighbor {ip-address
| ipv6-address | peer-group}
local-as as-number
Example:
Device(config-router)# neighbor rr-client-ab local-as 3000
|
Configures the local-AS feature for the neighbor or peer group.
|
Step 9 |
neighbor {ip-address
| ipv6-address | peer-group}
route-reflector-client
Example:
Device(config-router)# neighbor rr-client-ab route-reflector-client
|
Configures the local device to be a route reflector and configures the neighbor or peer group to be its client.
|
Step 10 |
address-family
vpnv4
Example:
Device(config-router)# address-family vpnv4
|
(Optional) Places the router in VPNv4 address family configuration mode.
|
Step 11 |
neighbor {ip-address
| ipv6-address | peer-group}
allow-policy
Example:
Device(config-router-af)# neighbor rr-client-ab allow-policy
|
(Optional) Allows the RR to be configured to change iBGP attributes for the specified neighbor or peer group.
|
Step 12 |
exit
Example:
Device(config-router-af)# exit
|
Exits address family configuration mode and enters router configuration mode.
|
Step 13 |
address-family
vpnv6
Example:
Device(config-router)# address-family vpnv6
|
(Optional) Places the router in VPNv6 address family configuration mode.
|
Step 14 |
neighbor {ip-address
| ipv6-address | peer-group}
allow-policy
Example:
Device(config-router-af)# neighbor rr-client-ab allow-policy
|
(Optional) Allows the RR to be configured to change iBGP attributes for the specified neighbor or peer group.
|
Step 15 |
end
Example:
Device(config-router-af)# end
|
Exits address family configuration mode, and enters privileged EXEC mode.
|
Step 16 |
show ip bgp vpnv4 all neighbors
{ip-address
| ipv6-address}
policy
Example:
Device# show ip bgp vpnv4 all neighbors 192.168.3.3 policy
|
(Optional) Displays the locally configured policies of the neighbor.
|
Step 17 |
show ip bgp vpnv4 all update-group update-group
Example:
Device# show ip bgp vpnv4 all update-group 2
|
(Optional) Displays the information for the update group.
|
Step 18 |
show ip bgp vpnv4 all neighbors
{ip-address
| ipv6-address}
Example:
Device# show ip bgp vpnv4 all neighbors 192.168.3.3
|
(Optional) Displays information about the neighbor.
|