| Step 1 |
enable
Example:
|
Enables privileged EXEC mode.
- Enter your password if prompted.
|
| Step 2 |
configure
terminal
Example:
Device# configure terminal
|
Enters global configuration mode.
|
| Step 3 |
vrf
definition
vrf1
Example:
Device(config)# vrf definition vrf1
|
Defines a VRF instance and enters VRF configuration mode.
|
| Step 4 |
rd
route-distinguisher
Example:
Device(config-vrf)# rd 1:1
|
Specifies a route distinguisher (RD) for a VRF instance.
|
| Step 5 |
route-target
export
route-target-ext-community
Example:
Device(config-vrf)# route-target export 1:1
|
Creates a route target export extended community for a VRF instance.
|
| Step 6 |
route-target
import
route-target-ext-community
Example:
Device(config-vrf)# route-target import 1:1
|
Creates a route target import extended community for a VRF instance.
|
| Step 7 |
address-family
ipv6
Example:
Device(config-vrf)# address-family ipv6
|
Configures a routing session using IPv6 address prefixes and enters address family configuration mode.
|
| Step 8 |
mdt
default
group-address
Example:
Device(config-vrf-af)# mdt default 239.0.0.1
|
Configures a default multicast distribution tree (MDT) group for a VRF instance.
|
| Step 9 |
exit
Example:
Device(config-vrf-af)# exit
|
Exits address family configuration mode and enters VRF configuration mode.
|
| Step 10 |
exit
Example:
|
Exits VRF configuration mode and enters global configuration mode.
|
| Step 11 |
router
bgp
autonomous-system-number
Example:
Device(config)# router bgp 50000
|
Configures a BGP routing process and enters router configuration mode.
|
| Step 12 |
address-family
vpnv6
multicast
Example:
Device(config-router)# address-family vpnv6 multicast
|
Configures a routing session using VPN Version 6 multicast address prefixes and enters address family configuration mode.
|
| Step 13 |
neighbor
peer-group-name
send-community
extended
Example:
Device(config-router-af)# neighbor client1 send-community extended
|
Specifies that a communities attribute should be sent to a BGP neighbor.
|
| Step 14 |
neighbor
{ip-address |
peer-group-name |
ipv6-address
%}
activate
Example:
Router(config-router-af)# neighbor 2001:DB8:0:CC00::1 % activate
|
Enables the neighbor to exchange prefixes for the specified family type with the neighbor and the local router.
|
| Step 15 |
address-family
ipv6
multicast
vrf
vrf-name
Example:
Device(config-router-af)# address-family ipv6 multicast vrf vrf1
|
Configures a routing session using IPv6 multicast address prefixes for a VRF instance.
|
| Step 16 |
end
Example:
Device(config-router-af)# end
|
Exits address family configuration mode and returns to privileged EXEC mode.
|