Knowledge of Multi-Protocol BGP (MP-BGP) and RFC 4364, BGP/MPLS IP Virtual Private Networks (VPNs), is assumed throughout this example, as well as Protocol Independent Multicast (PIM), RFC 6513,
Multicast in MPLS/BGP IP VPNs, and RFC 6514,
BGP Encodings and Procedures for Multicast in MPLS/BGP IP VPNs.
Figure 118 shows the concept of source redundancy. PE-1 and PE-3 have directly connected multicast sources. For clarity, consider a single multicast group with two separate sources connected at different sites. The content of each group is identical at a given time (allowing for transmission delay), as is expected for an IPTV channel. PE-1 and PE-3 are referred to as sender PEs as they are closer to the source; PE2 and PE4 are referred to as receiver PEs as they are closer to hosts 1 and 2.
configure
router ldp
interface-parameters
interface int-PE-1-P-1
multicast-traffic enable
exit
exit
exit
The test topology is shown in Figure 119, containing the four PEs plus the route reflector at P-1.
The first step is to configure an iBGP session between each of the PEs and the Route Reflector (RR) seen in Figure 119. The address families negotiated between the iBGP peers are vpn-ipv4 (unicast routing) and mvpn-ipv4 (multicast routing).
configure router bgp
group internal
family vpn-ipv4 mvpn-ipv4
type internal
neighbor 192.0.2.13
exit
exit
exit
configure router bgp
cluster 0.0.0.1
group rr_clients
type internal
family vpn-ipv4 mvpn-ipv4
neighbor 192.0.2.51
exit
neighbor 192.0.2.61
exit
neighbor 192.0.2.43
exit
neighbor 192.0.2.45
exit
exit
exit all
*B:PE-1>config>router>bgp>group# show router bgp summary
===============================================================================
BGP Router ID:192.0.2.43 AS:64496 Local AS:64496
===============================================================================
BGP Admin State : Up BGP Oper State : Up
Total Peer Groups : 1 Total Peers : 1
Total BGP Paths : 32 Total Path Memory : 7864
Total IPv4 Remote Rts : 0 Total IPv4 Rem. Active Rts : 0
Total McIPv4 Remote Rts : 0 Total McIPv4 Rem. Active Rts: 0
Total McIPv6 Remote Rts : 0 Total McIPv6 Rem. Active Rts: 0
Total IPv6 Remote Rts : 0 Total IPv6 Rem. Active Rts : 0
Total IPv4 Backup Rts : 0 Total IPv6 Backup Rts : 0
Total Supressed Rts : 0 Total Hist. Rts : 0
Total Decay Rts : 0
Total VPN Peer Groups : 0 Total VPN Peers : 0
Total VPN Local Rts : 10
Total VPN-IPv4 Rem. Rts : 0 Total VPN-IPv4 Rem. Act. Rts: 0
Total VPN-IPv6 Rem. Rts : 0 Total VPN-IPv6 Rem. Act. Rts: 0
Total VPN-IPv4 Bkup Rts : 0 Total VPN-IPv6 Bkup Rts : 0
Total VPN Supp. Rts : 0 Total VPN Hist. Rts : 0
Total VPN Decay Rts : 0
Total L2-VPN Rem. Rts : 0 Total L2VPN Rem. Act. Rts : 0
Total MVPN-IPv4 Rem Rts : 0 Total MVPN-IPv4 Rem Act Rts : 0
Total MDT-SAFI Rem Rts : 0 Total MDT-SAFI Rem Act Rts : 0
Total MSPW Rem Rts : 0 Total MSPW Rem Act Rts : 0
Total RouteTgt Rem Rts : 0 Total RouteTgt Rem Act Rts : 0
Total McVpnIPv4 Rem Rts : 0 Total McVpnIPv4 Rem Act Rts : 0
Total MVPN-IPv6 Rem Rts : 0 Total MVPN-IPv6 Rem Act Rts : 0
Total EVPN Rem Rts : 0 Total EVPN Rem Act Rts : 0
Total FlowIpv4 Rem Rts : 0 Total FlowIpv4 Rem Act Rts : 0
Total FlowIpv6 Rem Rts : 0 Total FlowIpv6 Rem Act Rts : 0
===============================================================================
BGP Summary
===============================================================================
Neighbor
AS PktRcvd InQ Up/Down State|Rcv/Act/Sent (Addr Family)
PktSent OutQ
-------------------------------------------------------------------------------
192.0.2.13
64496 616 0 00h00m05s 0/0/0 (VpnIPv4)
12 0 0/0/0 (MvpnIPv4)
-------------------------------------------------------------------------------
B:PE-1# configure service vprn 10
B:PE-1>config>service>vprn# info
----------------------------------------------
route-distinguisher 64496:10
auto-bind ldp
vrf-target target:64496:10
interface "int-PE-1-CE-1" create
address 172.16.1.1/24
sap 2/2/3:10.0 create
exit
exit
interface "rp" create
address 10.10.10.10/32
loopback
exit
pim
apply-to all
rp
static
address 10.10.10.10
group-prefix 239.255.0.0/8
exit
exit
bsr-candidate
shutdown
exit
rp-candidate
shutdown
exit
exit
no shutdown
exit
mvpn
auto-discovery default
c-mcast-signaling bgp
provider-tunnel
inclusive
mldp
no shutdown
exit
exit
exit
exit
no shutdown
A loopback interface called rp acts as the RP for all group prefixes in the 239.255.0.0/16 range. This will be the RP for the East groups.
B:PE-2# configure service vprn 10
B:PE-2>config>service>vprn# info
----------------------------------------------
route-distinguisher 64496:10
auto-bind ldp
vrf-target target:64496:10
interface "int-PE-2-CE-2" create
address 172.16.2.1/24
sap 1/1/2:10.0 create
exit
exit
igmp
interface "int-PE-2-CE-2"
no shutdown
exit
no shutdown
exit
pim
rp
static
address 10.10.10.10
group-prefix 239.255.0.0/8
exit
exit
no shutdown
exit
no shutdown
*B:PE-3# configure service vprn 10
*B:PE-3>config>service>vprn# info
----------------------------------------------
route-distinguisher 64496:10
auto-bind ldp
vrf-target target:64496:10
interface "rp" create
address 10.10.10.11/32
loopback
exit
interface "int-PE3-CE-3" create
address 172.16.3.1/24
sap 2/1/3:10 create
exit
exit
pim
apply-to all
rp
static
address 10.10.10.11
group-prefix 239.255.0.0/8
exit
exit
exit
no shutdown
exit
no shutdown
----------------------------------------------
*B:PE-4>config>service>vprn# info
----------------------------------------------
route-distinguisher 64496:10
auto-bind ldp
vrf-target target:64496:10
interface "int-PE-4-CE-4" create
address 172.16.4.1/24
sap 2/2/2:10 create
exit
exit
igmp
interface "int-PE-4-CE-4"
no shutdown
exit
no shutdown
exit
pim
rp
static
address 10.10.10.11
group-prefix 239.255.0.0/8
exit
exit
exit
no shutdown
exit
no shutdown
----------------------------------------------
B:PE-1>config>service>vprn# info
----------------------------------------------
mvpn
auto-discovery default
c-mcast-signaling bgp
provider-tunnel
inclusive
mldp
no shutdown
exit
exit
exit
exit
B:PE-1# configure router policy-options
begin
community "blue" members "64496:452"
community "mvpn_10_rt" members "target:64496:10"
policy-statement "mvpn_10"
entry 10
description "match mvpn routes - type 5 Source AD - add RT and 'blue'
community"
from
mvpn-type 5
family mvpn-ipv4
exit
action accept
community add "blue" "mvpn_10_rt"
exit
exit
default-action accept
community add "mvpn_10_rt"
exit
exit
B:PE-1# configure router policy-options
begin
community "blue" members "64496:452"
community "mvpn_10_rt" members "target:64496:10"
policy-statement "mvpn_10_import"
entry 10
from
community "mvpn_10_rt"
exit
action accept
exit
exit
exit
*B:PE-1>config>service>vprn>mvpn# info
----------------------------------------------
auto-discovery default
c-mcast-signaling bgp
intersite-shared persistent-type5-adv
provider-tunnel
inclusive
mldp
no shutdown
exit
exit
exit
vrf-import "mvpn_10_import"
vrf-export "mvpn_10_export"
B:PE-3# configure router policy-options
begin
community "red" members "64496:332"
community "mvpn_10_rt" members "target:64496:10"
policy-statement "mvpn_10_export"
entry 10
from
mvpn-type 5
family mvpn-ipv4
exit
action accept
community add "red" "mvpn_10_rt"
exit
exit
default-action accept
community add "mvpn_10_rt"
exit
exit
policy-statement "mvpn_10_import"
entry 10
from
community "mvpn_10_rt"
exit
action accept
exit
exit
exit
*B:PE-3>config>service>vprn>mvpn# info
----------------------------------------------
auto-discovery default
c-mcast-signaling bgp
intersite-shared persistent-type5-adv
provider-tunnel
inclusive
mldp
no shutdown
exit
exit
exit
vrf-import "mvpn_10_import"
vrf-export "mvpn_10_export"
*B:PE-2>config>router>policy-options# info
----------------------------------------------
community "red" members "64496:332"
community "blue" members "64496:452"
community "mvpn_10_rt" members "target:64496:10"
policy-statement "mvpn_10_import"
entry 10
description "allow mvpn source-ad for 'red' group - set local-pref to
200"
from
community expression "[blue] AND [mvpn_10_rt]"
mvpn-type 5
exit
action accept
local-preference 200
exit
exit
entry 20
from
community expression "[red] AND [mvpn_10_rt]"
mvpn-type 5
exit
action accept
local-preference 50
exit
exit
default-action accept
exit
exit
*B:PE-2>config>router>policy-options# info
----------------------------------------------
begin
prefix-list "group_239.255.x.x"
prefix 239.255.0.0/16 longer
exit
community "red" members "64496:332"
community "blue" members "64496:452"
community "mvpn_10_rt" members "target:64496:10"
policy-statement "mvpn_10_export"
entry 10
from
family mvpn-ipv4
exit
action accept
community add "mvpn_10_rt"
exit
exit
exit
commit
B:PE-2# configure service vprn 10
B:PE-2>config>service>vprn# info
----------------------------------------------
route-distinguisher 64496:10
auto-bind ldp
vrf-target target:64496:10
mvpn
auto-discovery default
c-mcast-signaling bgp
no intersite-shared
red-source-list
src-prefix 172.16.1.0/24
src-prefix 172.16.3.0/24
exit
provider-tunnel
inclusive
mldp
no shutdown
exit
exit
exit
vrf-import "mvpn_10_import"
vrf-export "mvpn_10_export"
exit
no shutdown
B:PE-4>config>router>policy-options# info
----------------------------------------------
begin
community "red" members "64496:332"
community "mvpn_10_rt" members "target:64496:10"
policy-statement "mvpn_10_import"
entry 10
description "Match Source AD from 'red' group - set local preference to 200"
from
community expression "[red] AND [mvpn_10_rt]"
mvpn-type 5
exit
action accept
local-preference 200
exit
exit
entry 20
description "Match Source AD from 'blue' group - set local preference to 50"
from
community expression "[blue] AND [mvpn_10_rt]"
mvpn-type 5
exit
action accept
local-preference 50
exit
exit
default-action accept
exit
exit
commit
B:PE-4>config>router>policy-options# info
----------------------------------------------
begin
community "mvpn_10_rt" members "target:64496:10"
policy-statement "mvpn_10_export"
description "export policy for mvpn routes"
entry 10
description "add RT for mvpn routes"
from
family mvpn-ipv4
exit
action accept
community add "mvpn_10"
exit
exit
exit
commit
B:PE-4# configure service vprn 10
B:PE-4>config>service>vprn# info
----------------------------------------------
mvpn
auto-discovery default
c-mcast-signaling bgp
no intersite-shared
red-source-list
src-prefix 172.16.1.0/24
src-prefix 172.16.3.0/24
exit
provider-tunnel
inclusive
mldp
no shutdown
exit
exit
exit
vrf-import "mvpn_10_import"
vrf-export "mvpn_10_export"
exit
no shutdown
Each PE within the
MVPN originates an Intra-AD BGP route. This notifies the other PEs within the VPRN. This is used to create a set of Inclusive Provider Multicast Service Interfaces (I-PMSI) between each PE. In this case, I-PMSIs are signaled using mLDP.
*B:PE-1# show router bgp routes mvpn-ipv4
===============================================================================
BGP Router ID:192.0.2.43 AS:64496 Local AS:64496
===============================================================================
Legend -
Status codes : u - used, s - suppressed, h - history, d - decayed, * - valid
Origin codes : i - IGP, e - EGP, ? - incomplete, > - best, b - backup
===============================================================================
BGP MVPN-IPv4 Routes
===============================================================================
Flag RouteType OriginatorIP LocalPref MED
RD SourceAS Label
Nexthop SourceIP
As-Path GroupIP
-------------------------------------------------------------------------------
i Intra-Ad 192.0.2.43 100 0
64496:10 - -
192.0.2.43 -
No As-Path -
u*>i Intra-Ad 192.0.2.45 100 0
64496:10 - -
192.0.2.45 -
No As-Path -
u*>i Intra-Ad 192.0.2.51 100 0
64496:10 - -
192.0.2.51 -
No As-Path -
u*>i Intra-Ad 192.0.2.61 100 0
64496:10 - -
192.0.2.61 -
No As-Path -
-------------------------------------------------------------------------------
Routes : 4
===============================================================================
*B:PE-1# show router 10 pim tunnel-interface
===============================================================================
PIM Interfaces ipv4
===============================================================================
Interface Adm Opr DR Prty Hello Intvl Mcast Send
DR
-------------------------------------------------------------------------------
mpls-if-73734 Up Up N/A N/A N/A
192.0.2.43
mpls-if-73735 Up Up N/A N/A N/A
192.0.2.51
mpls-if-73736 Up Up N/A N/A N/A
192.0.2.45
mpls-if-73737 Up Up N/A N/A N/A
192.0.2.61
-------------------------------------------------------------------------------
Interfaces : 4
===============================================================================
*B:PE-2# show router 10 route-table
===============================================================================
Route Table (Service: 10)
===============================================================================
Dest Prefix[Flags] Type Proto Age Pref
Next Hop[Interface Name] Metric
-------------------------------------------------------------------------------
10.10.10.10/32 Remote BGP VPN 03h30m32s 170
192.0.2.61 (tunneled) 0
10.10.10.11/32 Remote BGP VPN 02h25m19s 170
192.0.2.43 (tunneled) 0
172.16.1.0/24 Remote BGP VPN 02h25m19s 170
192.0.2.43 (tunneled) 0
172.16.2.0/24 Local Local 02d02h51m 0
int-PE-2-CE-2 0
172.16.3.0/24 Remote BGP VPN 03h30m32s 170
192.0.2.61 (tunneled) 0
172.16.4.0/24 Remote BGP VPN 03h18m27s 170
192.0.2.51 (tunneled) 0
-------------------------------------------------------------------------------
No. of Routes: 6
Flags: n = Number of times nexthop is repeated
B = BGP backup route available
L = LFA nexthop available
===============================================================================
*B:PE-2# show router bgp routes vpn-ipv4 172.16.1.0/24 hunt
===============================================================================
BGP Router ID:192.0.2.45 AS:64496 Local AS:64496
===============================================================================
Legend -
Status codes : u - used, s - suppressed, h - history, d - decayed, * - valid
Origin codes : i - IGP, e - EGP, ? - incomplete, > - best, b - backup
===============================================================================
BGP VPN-IPv4 Routes
===============================================================================
-------------------------------------------------------------------------------
RIB In Entries
-------------------------------------------------------------------------------
Network : 172.16.1.0/24
Nexthop : 192.0.2.43
Route Dist. : 64496:10 VPN Label : 262072
Path Id : None
From : 192.0.2.13
Res. Nexthop : n/a
Local Pref. : 100 Interface Name : int-PE-2-P-3
Aggregator AS : None Aggregator : None
Atomic Aggr. : Not Atomic MED : None
AIGP Metric : None
Connector : None
Community : target:64496:10 l2-vpn/vrf-imp:192.0.2.43:2
source-as:64496:0
Cluster : 192.0.2.13
Originator Id : 192.0.2.43 Peer Router Id : 192.0.2.13
Fwd Class : None Priority : None
Flags : Used Valid Best IGP
Route Source : Internal
AS-Path : No As-Path
Neighbor-AS : N/A
VPRN Imported : 10
-------------------------------------------------------------------------------
RIB Out Entries
-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
Routes : 1
===============================================================================
*B:PE-2#
*B:PE-1# admin display-config index | match vprn10
virtual-router "vprn10" 2 0
*B:PE-2# show router bgp routes mvpn-ipv4 type source-ad
===============================================================================
BGP Router ID:192.0.2.45 AS:64496 Local AS:64496
===============================================================================
Legend -
Status codes : u - used, s - suppressed, h - history, d - decayed, * - valid
Origin codes : i - IGP, e - EGP, ? - incomplete, > - best, b - backup
===============================================================================
BGP MVPN-IPv4 Routes
===============================================================================
Flag RouteType OriginatorIP LocalPref MED
RD SourceAS Label
Nexthop SourceIP
As-Path GroupIP
-------------------------------------------------------------------------------
u*>i Source-Ad - 200 0
64496:10 - -
192.0.2.43 172.16.1.2
No As-Path 239.255.0.1
u*>i Source-Ad - 100 0
64496:10 - -
192.0.2.61 172.16.3.2
No As-Path 239.255.0.1
-------------------------------------------------------------------------------
Routes : 2
===============================================================================
B:PE-1# show router 10 pim group
===============================================================================
Legend: A = Active S = Standby
===============================================================================
PIM Groups ipv4
===============================================================================
Group Address Type Spt Bit Inc Intf No.Oifs
Source Address RP State Inc Intf(S)
-------------------------------------------------------------------------------
239.255.0.1 (S,G) int-PE-1-CE-1 0
172.16.1.2 10.10.10.11
239.255.0.1 (S,G) mpls-if-73833 0
172.16.3.2 10.10.10.11
-------------------------------------------------------------------------------
Groups : 2
===============================================================================
*B:PE-3# show router 10 pim group
===============================================================================
Legend: A = Active S = Standby
===============================================================================
PIM Groups ipv4
===============================================================================
Group Address Type Spt Bit Inc Intf No.Oifs
Source Address RP State Inc Intf(S)
-------------------------------------------------------------------------------
239.255.0.1 (S,G) mpls-if-73820 0
172.16.1.2 10.10.10.10
239.255.0.1 (S,G) int-PE3-CE-3 0
172.16.3.2 10.10.10.10
-------------------------------------------------------------------------------
Groups : 2
===============================================================================
*B:PE-2# show router bgp routes mvpn-ipv4 type source-ad hunt
===============================================================================
BGP Router ID:192.0.2.45 AS:64496 Local AS:64496
===============================================================================
Legend -
Status codes : u - used, s - suppressed, h - history, d - decayed, * - valid
Origin codes : i - IGP, e - EGP, ? - incomplete, > - best, b - backup
===============================================================================
BGP MVPN-IPv4 Routes
===============================================================================
-------------------------------------------------------------------------------
RIB In Entries
-------------------------------------------------------------------------------
Route Type : Source-Ad
Route Dist. : 64496:10
Source IP : 172.16.1.2
Group IP : 239.255.0.1
Nexthop : 192.0.2.43
From : 192.0.2.13
Res. Nexthop : 0.0.0.0
Local Pref. : 200 Interface Name : NotAvailable
Aggregator AS : None Aggregator : None
Atomic Aggr. : Not Atomic MED : 0
AIGP Metric : None
Connector : None
Community : 64496:452 target:64496:10
Cluster : 192.0.2.13
Originator Id : 192.0.2.43 Peer Router Id : 192.0.2.13
Flags : Used Valid Best IGP
Route Source : Internal
AS-Path : No As-Path
Neighbor-AS : N/A
VPRN Imported : 10
Route Type : Source-Ad
Route Dist. : 64496:10
Source IP : 172.16.3.2
Group IP : 239.255.0.1
Nexthop : 192.0.2.61
From : 192.0.2.13
Res. Nexthop : 0.0.0.0
Local Pref. : 100 Interface Name : NotAvailable
Aggregator AS : None Aggregator : None
Atomic Aggr. : Not Atomic MED : 0
AIGP Metric : None
Connector : None
Community : 64496:332 target:64496:10
Cluster : 192.0.2.13
Originator Id : 192.0.2.61 Peer Router Id : 192.0.2.13
Flags : Used Valid Best IGP
Route Source : Internal
AS-Path : No As-Path
Neighbor-AS : N/A
VPRN Imported : 10
-------------------------------------------------------------------------------
RIB Out Entries
-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
Routes : 2
===============================================================================
B:PE-2# 1 2014/03/05 13:51:51.31 GMT MINOR: DEBUG #2001 Base Peer 1: 192.0.2.13
"Peer 1: 192.0.2.13: UPDATE
Peer 1: 192.0.2.13 - Received BGP UPDATE:
Withdrawn Length = 0
Total Path Attr Length = 86
Flag: 0x90 Type: 14 Len: 29 Multiprotocol Reachable NLRI:
Address Family MVPN_IPV4
NextHop len 4 NextHop 192.0.2.43
Type: Source-AD Len: 18 RD: 64496:10 Src: 172.16.1.2 Grp: 239.255.0.1
Flag: 0x40 Type: 1 Len: 1 Origin: 0
Flag: 0x40 Type: 2 Len: 0 AS Path:
Flag: 0x80 Type: 4 Len: 4 MED: 0
Flag: 0x40 Type: 5 Len: 4 Local Preference: 100
Flag: 0xc0 Type: 8 Len: 4 Community:
64496:452
Flag: 0x80 Type: 9 Len: 4 Originator ID: 192.0.2.43
Flag: 0x80 Type: 10 Len: 4 Cluster ID:
192.0.2.13
Flag: 0xc0 Type: 16 Len: 8 Extended Community:
target:64496:10
"
2 2014/03/05 13:51:51.31 GMT MINOR: DEBUG #2001 Base Peer 1: 192.0.2.13
"Peer 1: 192.0.2.13: UPDATE
Peer 1: 192.0.2.13 - Received BGP UPDATE:
Withdrawn Length = 0
Total Path Attr Length = 86
Flag: 0x90 Type: 14 Len: 29 Multiprotocol Reachable NLRI:
Address Family MVPN_IPV4
NextHop len 4 NextHop 192.0.2.61
Type: Source-AD Len: 18 RD: 64496:10 Src: 172.16.3.2 Grp: 239.255.0.1
Flag: 0x40 Type: 1 Len: 1 Origin: 0
Flag: 0x40 Type: 2 Len: 0 AS Path:
Flag: 0x80 Type: 4 Len: 4 MED: 0
Flag: 0x40 Type: 5 Len: 4 Local Preference: 100
Flag: 0xc0 Type: 8 Len: 4 Community:
64496:332
Flag: 0x80 Type: 9 Len: 4 Originator ID: 192.0.2.61
Flag: 0x80 Type: 10 Len: 4 Cluster ID:
192.0.2.13
Flag: 0xc0 Type: 16 Len: 8 Extended Community:
target:64496:10
"
B:PE-4# show router bgp routes mvpn-ipv4 type source-ad hunt
===============================================================================
BGP Router ID:192.0.2.51 AS:64496 Local AS:64496
===============================================================================
Legend -
Status codes : u - used, s - suppressed, h - history, d - decayed, * - valid
Origin codes : i - IGP, e - EGP, ? - incomplete, > - best, b - backup
===============================================================================
BGP MVPN-IPv4 Routes
===============================================================================
-------------------------------------------------------------------------------
RIB In Entries
-------------------------------------------------------------------------------
Route Type : Source-Ad
Route Dist. : 64496:10
Source IP : 172.16.1.2
Group IP : 239.255.0.1
Nexthop : 192.0.2.43
From : 192.0.2.13
Res. Nexthop : 0.0.0.0
Local Pref. : 100 Interface Name : NotAvailable
Aggregator AS : None Aggregator : None
Atomic Aggr. : Not Atomic MED : 0
AIGP Metric : None
Connector : None
Community : 64496:452 target:64496:10
Cluster : 192.0.2.13
Originator Id : 192.0.2.43 Peer Router Id : 192.0.2.13
Flags : Used Valid Best IGP
Route Source : Internal
AS-Path : No As-Path
Neighbor-AS : N/A
VPRN Imported : 10
Route Type : Source-Ad
Route Dist. : 64496:10
Source IP : 172.16.3.2
Group IP : 239.255.0.1
Nexthop : 192.0.2.61
From : 192.0.2.13
Res. Nexthop : 0.0.0.0
Local Pref. : 200 Interface Name : NotAvailable
Aggregator AS : None Aggregator : None
Atomic Aggr. : Not Atomic MED : 0
AIGP Metric : None
Connector : None
Community : 64496:332 target:64496:10
Cluster : 192.0.2.13
Originator Id : 192.0.2.61 Peer Router Id : 192.0.2.13
Flags : Used Valid Best IGP
Route Source : Internal
AS-Path : No As-Path
Neighbor-AS : N/A
VPRN Imported : 10
-------------------------------------------------------------------------------
RIB Out Entries
-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
Routes : 2
===============================================================================
*B:PE-4#
*B:PE-2# show debug
debug
router "Base"
bgp
update neighbor 192.0.2.13
exit
exit
exit
*B:PE-2#
1 103 2014/05/27 11:15:19.29 BST MINOR: DEBUG #2001 Base Peer 1: 192.0.2.13
"Peer 1: 192.0.2.13: UPDATE
Peer 1: 192.0.2.13 - Send BGP UPDATE:
Withdrawn Length = 0
Total Path Attr Length = 101
Flag: 0x90 Type: 14 Len: 57 Multiprotocol Reachable NLRI:
Address Family MVPN_IPV4
NextHop len 4 NextHop 192.0.2.45
Type: Shared-Join Len:22 RD: 64496:101 SrcAS: 64496 Src: 10.10.10.11 Grp
: 239.255.0.1
Type: Source-Join Len:22 RD: 64496:101 SrcAS: 64496 Src: 172.16.1.2 Grp:
239.255.0.1
Flag: 0x40 Type: 1 Len: 1 Origin: 0
Flag: 0x40 Type: 2 Len: 0 AS Path:
Flag: 0x80 Type: 4 Len: 4 MED: 0
Flag: 0x40 Type: 5 Len: 4 Local Preference: 100
Flag: 0xc0 Type: 16 Len: 16 Extended Community:
target:64496:10
target:192.0.2.43:2
"
*B:PE-2# show router 10 pim group
===============================================================================
Legend: A = Active S = Standby
===============================================================================
PIM Groups ipv4
===============================================================================
Group Address Type Spt Bit Inc Intf No.Oifs
Source Address RP State Inc Intf(S)
-------------------------------------------------------------------------------
239.255.0.1 (*,G) mpls-if-73881 1
* 10.10.10.11
239.255.0.1 (S,G) spt mpls-if-73881 1
172.16.1.2 10.10.10.11 A
239.255.0.1 (S,G) mpls-if-73882 1
172.16.3.2 10.10.10.11 S
-------------------------------------------------------------------------------
Groups :3
===============================================================================
B:PE-4# show router 10 pim group
===============================================================================
Legend: A = Active S = Standby
===============================================================================
PIM Groups ipv4
===============================================================================
Group Address Type Spt Bit Inc Intf No.Oifs
Source Address RP State Inc Intf(S)
-------------------------------------------------------------------------------
239.255.0.1 (*,G) mpls-if-73889 1
* 10.10.10.10
239.255.0.1 (S,G) mpls-if-73888 1
172.16.1.2 10.10.10.10 S
239.255.0.1 (S,G) spt mpls-if-73889 1
172.16.3.2 10.10.10.10 A
-------------------------------------------------------------------------------
Groups : 3
===============================================================================
B:PE-4# show router bgp routes mvpn-ipv4 type source-ad hunt
===============================================================================
BGP Router ID:192.0.2.51 AS:64496 Local AS:64496
===============================================================================
Legend -
Status codes : u - used, s - suppressed, h - history, d - decayed, * - valid
Origin codes : i - IGP, e - EGP, ? - incomplete, > - best, b - backup
===============================================================================
BGP MVPN-IPv4 Routes
===============================================================================
-------------------------------------------------------------------------------
RIB In Entries
-------------------------------------------------------------------------------
Route Type : Source-Ad
Route Dist. : 64496:10
Source IP : 172.16.1.2
Group IP : 239.255.0.1
Nexthop : 192.0.2.43
From : 192.0.2.13
Res. Nexthop : 0.0.0.0
Local Pref. : 100 Interface Name : NotAvailable
Aggregator AS : None Aggregator : None
Atomic Aggr. : Not Atomic MED : 0
AIGP Metric : None
Connector : None
Community : 64496:452 target:64496:10
Cluster : 192.0.2.13
Originator Id : 192.0.2.43 Peer Router Id : 192.0.2.13
Flags : Used Valid Best IGP
Route Source : Internal
AS-Path : No As-Path
Neighbor-AS : N/A
VPRN Imported : 10
Route Type : Source-Ad
Route Dist. : 64496:10
Source IP : 172.16.3.2
Group IP : 239.255.0.1
Nexthop : 192.0.2.61
From : 192.0.2.13
Res. Nexthop : 0.0.0.0
Local Pref. : 200 Interface Name : NotAvailable
Aggregator AS : None Aggregator : None
Atomic Aggr. : Not Atomic MED : 0
AIGP Metric : None
Connector : None
Community : 64496:332 target:64496:10
Cluster : 192.0.2.13
Originator Id : 192.0.2.61 Peer Router Id : 192.0.2.13
Flags : Used Valid Best IGP
Route Source : Internal
AS-Path : No As-Path
Neighbor-AS : N/A
VPRN Imported : 10
-------------------------------------------------------------------------------
RIB Out Entries
-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
Routes : 2
===============================================================================
*B:PE-1# show router 10 mvpn
===============================================================================
MVPN 10 configuration data
===============================================================================
signaling : Bgp auto-discovery : Default
UMH Selection : Highest-Ip
intersite-shared : Disabled Persist SA : Disabled
vrf-import : mvpn_10_import
vrf-export : mvpn_10_export
vrf-target : N/A
C-Mcast Import RT : target:192.0.2.43:2
ipmsi : ldp
i-pmsi P2MP AdmSt : Up
i-pmsi Tunnel Name : mpls-if-73829
Mdt-type : sender-receiver
s-pmsi : none
data-delay-interval: 3 seconds
enable-asm-mdt : N/A
===============================================================================
*B:PE-1# admin display-config index | match vprn10
virtual-router "vprn10" 2 0
*B:PE-1# show router bgp routes mvpn-ipv4 type source-join hunt
===============================================================================
BGP Router ID:192.0.2.43 AS:64496 Local AS:64496
===============================================================================
Legend -
Status codes : u - used, s - suppressed, h - history, d - decayed, * - valid
Origin codes : i - IGP, e - EGP, ? - incomplete, > - best, b - backup
===============================================================================
BGP MVPN-IPv4 Routes
===============================================================================
-------------------------------------------------------------------------------
RIB In Entries
-------------------------------------------------------------------------------
Route Type : Source-Join
Route Dist. : 64496:10
Source AS : 64496
Source IP : 172.16.1.2
Group IP : 239.255.0.1
Nexthop : 192.0.2.45
From : 192.0.2.13
Res. Nexthop : 0.0.0.0
Local Pref. : 100 Interface Name : NotAvailable
Aggregator AS : None Aggregator : None
Atomic Aggr. : Not Atomic MED : 0
AIGP Metric : None
Connector : None
Community : target:64496:10 target:192.0.2.43:2
Cluster : 192.0.2.13
Originator Id : 192.0.2.45 Peer Router Id : 192.0.2.13
Flags : Used Valid Best IGP
Route Source : Internal
AS-Path : No As-Path
Neighbor-AS : N/A
VPRN Imported : 10
-------------------------------------------------------------------------------
RIB Out Entries
-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
Routes : 1
===============================================================================
*B:PE-1# show router 10 pim group 239.255.0.1 source 172.16.1.2 detail
===============================================================================
PIM Source Group ipv4
===============================================================================
Group Address : 239.255.0.1
Source Address : 172.16.1.2
RP Address : 10.10.10.11
Advt Router : 192.0.2.43
Flags : spt Type : (S,G)
MRIB Next Hop : 172.16.1.2
MRIB Src Flags : direct
Keepalive Timer Exp: 0d 00:00:20
Up Time : 0d 03:47:22 Resolved By : rtable-u
Up JP State : Joined Up JP Expiry : 0d 00:00:00
Up JP Rpt : Not Joined StarG Up JP Rpt Override : 0d 00:00:00
Register State : Pruned Register Stop Exp : 0d 00:00:12
Reg From Anycast RP: No
Rpf Neighbor : 172.16.1.2
Incoming Intf : int-PE-1-CE-1
Outgoing Intf List : mpls-if-73829
Curr Fwding Rate : 21504.0 kbps
Forwarded Packets : 26603799 Discarded Packets : 0
Forwarded Octets : 35755505856 RPF Mismatches : 0
Spt threshold : 0 kbps ECMP opt threshold : 7
Admin bandwidth : 1 kbps
-------------------------------------------------------------------------------
Groups : 1
===============================================================================
*B:PE-3# show router 10 mvpn
===============================================================================
MVPN 10 configuration data
===============================================================================
signaling : Bgp auto-discovery : Default
UMH Selection : Highest-Ip
intersite-shared : Enabled Persist SA : Enabled
vrf-import : mvpn_10_import
vrf-export : mvpn_10_export
vrf-target : N/A
C-Mcast Import RT : target:192.0.2.61:3
ipmsi : ldp
i-pmsi P2MP AdmSt : Up
i-pmsi Tunnel Name : mpls-if-73819
Mdt-type : sender-receiver
s-pmsi : none
data-delay-interval: 3 seconds
enable-asm-mdt : N/A
===============================================================================
*B:PE-3# show router bgp routes mvpn-ipv4 type source-ad detail
===============================================================================
BGP Router ID:192.0.2.61 AS:64496 Local AS:64496
===============================================================================
Legend -
Status codes : u - used, s - suppressed, h - history, d - decayed, * - valid
Origin codes : i - IGP, e - EGP, ? - incomplete, > - best, b - backup
===============================================================================
BGP MVPN-IPv4 Routes
===============================================================================
Route Type : Source-Ad
Route Dist. : 64496:10
Source IP : 172.16.1.2
Group IP : 239.255.0.1
Nexthop : 192.0.2.43
From : 192.0.2.13
Res. Nexthop : 0.0.0.0
Local Pref. : 100 Interface Name : NotAvailable
Aggregator AS : None Aggregator : None
Atomic Aggr. : Not Atomic MED : 0
AIGP Metric : None
Connector : None
Community : 64496:452 target:64496:10
Cluster : 192.0.2.13
Originator Id : 192.0.2.43 Peer Router Id : 192.0.2.13
Flags : Used Valid Best IGP
Route Source : Internal
AS-Path : No As-Path
Neighbor-AS : N/A
VPRN Imported : 10
-------------------------------------------------------------------------------
Routes : 1
===============================================================================
*B:PE-3# show router 10 pim group 239.255.0.1 source 172.16.3.2 detail
===============================================================================
PIM Source Group ipv4
===============================================================================
Group Address : 239.255.0.1
Source Address : 172.16.3.2
RP Address : 10.10.10.10
Advt Router : 192.0.2.61
Flags : spt Type : (S,G)
MRIB Next Hop : 172.16.3.2
MRIB Src Flags : direct
Keepalive Timer Exp: 0d 00:00:13
Up Time : 0d 03:50:59 Resolved By : rtable-u
Up JP State : Joined Up JP Expiry : 0d 00:00:00
Up JP Rpt : Not Joined StarG Up JP Rpt Override : 0d 00:00:00
Register State : Pruned Register Stop Exp : 0d 00:00:29
Reg From Anycast RP: No
Rpf Neighbor : 172.16.3.2
Incoming Intf : int-PE3-CE-3
Outgoing Intf List : mpls-if-73819
Curr Fwding Rate : 10703.9 kbps
Forwarded Packets : 13518483 Discarded Packets : 0
Forwarded Octets : 18168841152 RPF Mismatches : 0
Spt threshold : 0 kbps ECMP opt threshold : 7
Admin bandwidth : 1 kbps
-------------------------------------------------------------------------------
Groups : 1
===============================================================================