
The rule of this lab
1.Use logical-systems to emulate P,PE & CE router
2.Use IS-IS as IGP in AS 2500
3.Use OSPF as IGP in AS 5000
4.Add one router as transit point beween ASBR1 and ASBR2
5.Use multihop eBGP session between PE1 to PE2
6.Use RSVP and LDP Tunneling beween ASBR1 and ASBR2
7.LDP enable on each PE to ASBR
8.Enable IPv6 Tunneling
9.Create VRF that can overlap between 2 VPN network
Example configuration for ASBR router
[edit]
logical-systems {
asbr1 {
interfaces {
fxp0 {
unit 20 {
vlan-id 20;
family inet {
address 10.1.2.2/30;
}
family iso;
family mpls;
}
unit 30 {
vlan-id 30;
family inet {
address 10.1.3.1/30;
}
family mpls;
}
}
lo0 {
unit 35 {
family inet {
address 202.162.208.7/32;
}
family iso {
address 77.1000.2000.3000.4000.5077.00;
}
}
}
}
protocols {
rsvp {
interface fxp0.30 {
bandwidth 2m;
}
}
mpls {
traffic-engineering bgp-igp;
label-switched-path to_asbr2 {
to 125.249.16.7;
ldp-tunneling;
bandwidth 2m;
}
interface fxp0.20;
interface fxp0.30;
}
bgp {
group to_pe1 {
type internal;
local-address 202.162.208.7;
family inet {
labeled-unicast {
resolve-vpn;
}
}
neighbor 202.162.208.1;
}
group to_trans {
type external;
family inet {
labeled-unicast {
resolve-vpn;
}
}
export [ direct export-lo ];
peer-as 777;
neighbor 10.1.3.2;
}
}
isis {
interface fxp0.20 {
level 2 disable;
}
interface lo0.35 {
passive;
}
}
ldp {
interface fxp0.20;
}
}
policy-options {
policy-statement direct {
term 1 {
from protocol direct;
then accept;
}
}
policy-statement export-lo {
from {
route-filter 202.162.208.0/24 orlonger;
}
then accept;
}
}
routing-options {
autonomous-system 2500;
}
}
Example configuration for PE router
[edit]
logical-systems {
pe1 {
interfaces {
fxp0 {
unit 10 {
vlan-id 10;
family inet {
address 10.1.1.1/30;
}
family iso;
family mpls;
}
unit 100 {
vlan-id 100;
family inet {
address 192.168.1.1/30;
}
}
unit 110 {
vlan-id 110;
family inet {
address 192.168.1.1/30;
}
family inet6 {
address 2001:d30:1::1/126;
}
}
unit 120 {
vlan-id 120;
family inet {
address 192.168.1.9/30;
}
}
}
lo0 {
unit 15 {
family inet {
address 202.162.208.1/32;
}
family iso {
address 77.1000.2000.3000.4000.5000.00;
}
}
unit 105 {
family inet {
address 192.168.1.100/32;
}
}
unit 115 {
family inet {
address 192.168.1.105/32;
}
family inet6 {
address 2001:d30:1::100/128;
}
}
unit 125 {
family inet {
address 192.168.1.109/32;
}
}
}
}
protocols {
mpls {
ipv6-tunneling;
interface fxp0.10;
}
bgp {
group to_asbr1 {
type internal;
local-address 202.162.208.1;
family inet {
labeled-unicast {
resolve-vpn;
}
}
neighbor 202.162.208.7;
}
group to_pe2 {
type external;
multihop;
local-address 202.162.208.1;
family inet-vpn {
any;
}
family inet6-vpn {
any;
}
peer-as 5000;
neighbor 125.249.16.1;
}
}
isis {
interface fxp0.10 {
level 2 disable;
}
interface lo0.15 {
passive;
}
}
ldp {
interface fxp0.10;
}
}
policy-options {
policy-statement vpn-export {
term 1 {
from protocol [ direct bgp ];
then {
community add vpn;
accept;
}
}
term 2 {
then reject;
}
}
policy-statement vpn-import {
term 1 {
from {
protocol bgp;
community vpn;
}
then accept;
}
term 2 {
then reject;
}
}
policy-statement vpnab-export {
term 1 {
from protocol [ direct bgp ];
then {
community add vpn;
community add vpnv6;
accept;
}
}
term 2 {
then reject;
}
}
policy-statement vpnab-import {
term 1 {
from {
protocol bgp;
community [ vpn vpnv6 ];
}
then accept;
}
term 2 {
then reject;
}
}
policy-statement vpnv6-export {
term 1 {
from protocol [ direct static bgp ];
then {
community add vpnv6;
accept;
}
}
term 2 {
then reject;
}
}
policy-statement vpnv6-import {
term 1 {
from {
protocol bgp;
community vpnv6;
}
then accept;
}
term 2 {
then reject;
}
}
community vpn members target:2500:100;
community vpnv6 members target:2500:666;
}
routing-instances {
vpn {
instance-type vrf;
interface fxp0.100;
interface lo0.105;
route-distinguisher 2500:100;
vrf-import vpn-import;
vrf-export vpn-export;
vrf-target target:2500:100;
vrf-table-label;
routing-options {
auto-export {
family inet {
unicast {
rib-group inet-access;
}
}
}
}
protocols {
bgp {
group toce1 {
type external;
peer-as 1000;
as-override;
neighbor 192.168.1.2;
}
}
}
}
vpnab {
instance-type vrf;
interface fxp0.120;
interface lo0.125;
route-distinguisher 2500:777;
vrf-import vpnab-import;
vrf-export vpnab-export;
vrf-target target:2500:777;
vrf-table-label;
routing-options {
auto-export {
family inet {
unicast {
rib-group inet-access;
}
}
}
}
protocols {
bgp {
group to_ceab {
type external;
peer-as 65002;
as-override;
neighbor 192.168.1.10;
}
}
}
}
vpnv6 {
instance-type vrf;
interface fxp0.110;
interface lo0.115;
route-distinguisher 2500:666;
vrf-import vpnv6-import;
vrf-export vpnv6-export;
vrf-target target:2500:666;
vrf-table-label;
routing-options {
rib vpnv6.inet6.0 {
static {
route 2001:5c0:1::/126 next-hop 2001:d30:1::3;
}
}
auto-export {
family inet {
unicast {
rib-group inet-access;
}
}
}
}
protocols {
bgp {
group toCE3 {
type external;
peer-as 65000;
as-override;
neighbor 192.168.1.2;
}
}
}
}
}
routing-options {
rib-groups {
inet-access {
import-rib inet.0;
}
}
autonomous-system 2500;
}
}
Example configuration for Transit point router
[edit]
logical-systems {
transit {
interfaces {
fxp1 {
unit 30 {
vlan-id 30;
family inet {
address 10.1.3.2/30;
}
family mpls;
}
unit 40 {
vlan-id 40;
family inet {
address 10.1.4.1/30;
}
family mpls;
}
}
lo0 {
unit 45 {
family inet {
address 67.100.150.1/32;
}
}
}
}
protocols {
rsvp {
interface fxp1.30 {
bandwidth 2m;
}
interface fxp1.40 {
bandwidth 2m;
}
}
mpls {
traffic-engineering bgp-igp;
interface fxp1.30;
interface fxp1.40;
}
bgp {
group to_asbr1 {
type external;
family inet {
labeled-unicast {
resolve-vpn;
}
}
export direct;
peer-as 2500;
neighbor 10.1.3.1;
}
group to_asbr2 {
type external;
family inet {
labeled-unicast {
resolve-vpn;
}
}
export direct;
peer-as 5000;
neighbor 10.1.4.2;
}
}
}
policy-options {
policy-statement direct {
term 1 {
from protocol direct;
then accept;
}
}
}
routing-options {
autonomous-system 777;
}
}
Example configuration for CE router
[edit]
logical-systems {
ce4 {
interfaces {
fxp1 {
unit 220 {
vlan-id 220;
family inet {
address 192.168.7.2/30;
}
family inet6 {
address 2001:d30:7::3/126;
}
}
}
lo0 {
unit 226 {
family inet {
address 172.17.67.7/32;
}
family inet6 {
address 2001:5c0:7::1/128;
}
}
}
}
protocols {
bgp {
group to_pe2 {
type external;
export direct;
peer-as 5000;
neighbor 192.168.7.1;
}
}
}
policy-options {
policy-statement direct {
term 1 {
from protocol direct;
then accept;
}
}
}
routing-options {
rib inet6.0 {
static {
route ::/0 next-hop 2001:d30:7::1;
}
}
autonomous-system 65001;
}
}
Let’s we see troubleshoot on PE & CE router
root# run show route logical-system pe1
inet.0: 20 destinations, 21 routes (20 active, 0 holddown, 0 hidden)
+ = Active Route, - = Last Active, * = Both
10.1.1.0/30 *[Direct/0] 00:04:47
> via fxp0.10
10.1.1.1/32 *[Local/0] 00:04:47
Local via fxp0.10
10.1.2.0/30 *[IS-IS/15] 00:04:19, metric 20
> to 10.1.1.2 via fxp0.10
10.1.4.0/30 *[BGP/170] 00:03:44, localpref 100, from 202.162.208.7
AS path: 777 I
> to 10.1.1.2 via fxp0.10, Push 299856, Push 299776(top)
10.1.5.0/30 *[BGP/170] 00:03:45, localpref 100, from 202.162.208.7
AS path: 777 5000 I
> to 10.1.1.2 via fxp0.10, Push 299872, Push 299776(top)
67.100.150.1/32 *[BGP/170] 00:03:44, localpref 100, from 202.162.208.7
AS path: 777 I
> to 10.1.1.2 via fxp0.10, Push 299856, Push 299776(top)
125.249.16.1/32 *[BGP/170] 00:03:45, localpref 100, from 202.162.208.7
AS path: 777 5000 I
> to 10.1.1.2 via fxp0.10, Push 299888, Push 299776(top)
125.249.16.7/32 *[BGP/170] 00:03:45, localpref 100, from 202.162.208.7
AS path: 777 5000 I
> to 10.1.1.2 via fxp0.10, Push 299872, Push 299776(top)
125.249.16.254/32 *[BGP/170] 00:03:45, localpref 100, from 202.162.208.7
AS path: 777 5000 I
> to 10.1.1.2 via fxp0.10, Push 299904, Push 299776(top)
172.17.62.1/32 *[BGP/170] 00:04:44, localpref 100
AS path: 65000 I
> to 192.168.1.2 via fxp0.110
172.17.63.1/32 *[BGP/170] 00:04:46, localpref 100
AS path: 1000 I
> to 192.168.1.2 via fxp0.100
172.17.64.1/32 *[BGP/170] 00:04:45, localpref 100
AS path: 65002 I
> to 192.168.1.10 via fxp0.120
192.168.1.0/30 *[Direct/0] 00:04:46
> via fxp0.100
[Direct/0] 00:04:44
> via fxp0.110
192.168.1.8/30 *[Direct/0] 00:04:45
> via fxp0.120
192.168.1.100/32 *[Direct/0] 00:04:46
> via lo0.105
192.168.1.105/32 *[Direct/0] 00:04:44
> via lo0.115
192.168.1.109/32 *[Direct/0] 00:04:45
> via lo0.125
202.162.208.1/32 *[Direct/0] 00:04:47
> via lo0.15
202.162.208.7/32 *[IS-IS/15] 00:04:09, metric 20
> to 10.1.1.2 via fxp0.10
202.162.208.254/32 *[IS-IS/15] 00:04:19, metric 10
> to 10.1.1.2 via fxp0.10
inet.3: 8 destinations, 8 routes (8 active, 0 holddown, 0 hidden)
+ = Active Route, - = Last Active, * = Both
10.1.4.0/30 *[BGP/170] 00:03:45, localpref 100, from 202.162.208.7
AS path: 777 I
> to 10.1.1.2 via fxp0.10, Push 299856, Push 299776(top)
10.1.5.0/30 *[BGP/170] 00:03:46, localpref 100, from 202.162.208.7
AS path: 777 5000 I
> to 10.1.1.2 via fxp0.10, Push 299872, Push 299776(top)
67.100.150.1/32 *[BGP/170] 00:03:45, localpref 100, from 202.162.208.7
AS path: 777 I
> to 10.1.1.2 via fxp0.10, Push 299856, Push 299776(top)
125.249.16.1/32 *[BGP/170] 00:03:46, localpref 100, from 202.162.208.7
AS path: 777 5000 I
> to 10.1.1.2 via fxp0.10, Push 299888, Push 299776(top)
125.249.16.7/32 *[BGP/170] 00:03:46, localpref 100, from 202.162.208.7
AS path: 777 5000 I
> to 10.1.1.2 via fxp0.10, Push 299872, Push 299776(top)
125.249.16.254/32 *[BGP/170] 00:03:46, localpref 100, from 202.162.208.7
AS path: 777 5000 I
> to 10.1.1.2 via fxp0.10, Push 299904, Push 299776(top)
202.162.208.7/32 *[LDP/9] 00:04:10, metric 1
> to 10.1.1.2 via fxp0.10, Push 299776
202.162.208.254/32 *[LDP/9] 00:04:19, metric 1
> to 10.1.1.2 via fxp0.10
vpn.inet.0: 8 destinations, 9 routes (8 active, 0 holddown, 0 hidden)
+ = Active Route, - = Last Active, * = Both
172.17.63.1/32 *[BGP/170] 00:04:47, localpref 100
AS path: 1000 I
> to 192.168.1.2 via fxp0.100
172.17.64.1/32 *[BGP/170] 00:04:46, localpref 100
AS path: 65002 I
> to 192.168.1.10 via fxp0.120
172.17.68.7/32 *[BGP/170] 00:03:36, localpref 100, from 125.249.16.1
AS path: 5000 1500 I
> to 10.1.1.2 via fxp0.10, Push 16, Push 299888, Push 299776(top)
192.168.1.0/30 *[Direct/0] 00:04:47
> via fxp0.100
[BGP/170] 00:04:47, localpref 100
AS path: 1000 I
> to 192.168.1.2 via fxp0.100
192.168.1.1/32 *[Local/0] 00:04:47
Local via fxp0.100
192.168.1.100/32 *[Direct/0] 00:04:47
> via lo0.105
192.168.7.0/30 *[BGP/170] 00:03:36, localpref 100, from 125.249.16.1
AS path: 5000 I
> to 10.1.1.2 via fxp0.10, Push 16, Push 299888, Push 299776(top)
192.168.7.77/32 *[BGP/170] 00:03:36, localpref 100, from 125.249.16.1
AS path: 5000 I
> to 10.1.1.2 via fxp0.10, Push 16, Push 299888, Push 299776(top)
vpnab.inet.0: 11 destinations, 13 routes (11 active, 0 holddown, 0 hidden)
+ = Active Route, - = Last Active, * = Both
172.17.62.1/32 *[BGP/170] 00:04:45, localpref 100
AS path: 65000 I
> to 192.168.1.2 via fxp0.110
172.17.63.1/32 *[BGP/170] 00:04:47, localpref 100
AS path: 1000 I
> to 192.168.1.2 via fxp0.100
172.17.64.1/32 *[BGP/170] 00:04:46, localpref 100
AS path: 65002 I
> to 192.168.1.10 via fxp0.120
172.17.67.7/32 *[BGP/170] 00:03:36, localpref 100, from 125.249.16.1
AS path: 5000 65001 I
> to 10.1.1.2 via fxp0.10, Push 17, Push 299888, Push 299776(top)
172.17.68.7/32 *[BGP/170] 00:03:36, localpref 100, from 125.249.16.1
AS path: 5000 1500 I
> to 10.1.1.2 via fxp0.10, Push 16, Push 299888, Push 299776(top)
192.168.1.8/30 *[Direct/0] 00:04:46
> via fxp0.120
[BGP/170] 00:04:46, localpref 100
AS path: 65002 I
> to 192.168.1.10 via fxp0.120
192.168.1.9/32 *[Local/0] 00:04:46
Local via fxp0.120
192.168.1.109/32 *[Direct/0] 00:04:46
> via lo0.125
192.168.7.0/30 *[BGP/170] 00:03:36, localpref 100, from 125.249.16.1
AS path: 5000 I
> to 10.1.1.2 via fxp0.10, Push 17, Push 299888, Push 299776(top)
[BGP/170] 00:03:36, localpref 100, from 125.249.16.1
AS path: 5000 I
> to 10.1.1.2 via fxp0.10, Push 16, Push 299888, Push 299776(top)
192.168.7.77/32 *[BGP/170] 00:03:36, localpref 100, from 125.249.16.1
AS path: 5000 I
> to 10.1.1.2 via fxp0.10, Push 16, Push 299888, Push 299776(top)
192.168.7.107/32 *[BGP/170] 00:03:36, localpref 100, from 125.249.16.1
AS path: 5000 I
> to 10.1.1.2 via fxp0.10, Push 17, Push 299888, Push 299776(top)
vpnv6.inet.0: 8 destinations, 9 routes (8 active, 0 holddown, 0 hidden)
+ = Active Route, - = Last Active, * = Both
172.17.62.1/32 *[BGP/170] 00:04:45, localpref 100
AS path: 65000 I
> to 192.168.1.2 via fxp0.110
172.17.64.1/32 *[BGP/170] 00:04:46, localpref 100
AS path: 65002 I
> to 192.168.1.10 via fxp0.120
172.17.67.7/32 *[BGP/170] 00:03:36, localpref 100, from 125.249.16.1
AS path: 5000 65001 I
> to 10.1.1.2 via fxp0.10, Push 17, Push 299888, Push 299776(top)
192.168.1.0/30 *[Direct/0] 00:04:45
> via fxp0.110
[BGP/170] 00:04:45, localpref 100
AS path: 65000 I
> to 192.168.1.2 via fxp0.110
192.168.1.1/32 *[Local/0] 00:04:45
Local via fxp0.110
192.168.1.105/32 *[Direct/0] 00:04:45
> via lo0.115
192.168.7.0/30 *[BGP/170] 00:03:36, localpref 100, from 125.249.16.1
AS path: 5000 I
> to 10.1.1.2 via fxp0.10, Push 17, Push 299888, Push 299776(top)
192.168.7.107/32 *[BGP/170] 00:03:36, localpref 100, from 125.249.16.1
AS path: 5000 I
> to 10.1.1.2 via fxp0.10, Push 17, Push 299888, Push 299776(top)
iso.0: 1 destinations, 1 routes (1 active, 0 holddown, 0 hidden)
+ = Active Route, - = Last Active, * = Both
77.1000.2000.3000.4000.5000/88
*[Direct/0] 00:04:45
> via lo0.15
mpls.0: 12 destinations, 12 routes (12 active, 0 holddown, 0 hidden)
+ = Active Route, - = Last Active, * = Both
0 *[MPLS/0] 00:05:45, metric 1
Receive
1 *[MPLS/0] 00:05:45, metric 1
Receive
2 *[MPLS/0] 00:05:45, metric 1
Receive
16 *[VPN/0] 00:05:33
to table vpn.inet.0, Pop
17 *[VPN/0] 00:05:33
to table vpnab.inet.0, Pop
18 *[VPN/0] 00:05:33
to table vpnv6.inet.0, Pop
299776 *[LDP/9] 00:04:19, metric 1
> to 10.1.1.2 via fxp0.10, Pop
299776(S=0) *[LDP/9] 00:04:19, metric 1
> to 10.1.1.2 via fxp0.10, Pop
299792 *[LDP/9] 00:04:10, metric 1
> to 10.1.1.2 via fxp0.10, Swap 299776
299808 *[VPN/170] 00:03:46
> to 192.168.1.2 via fxp0.110, Pop
299824 *[VPN/170] 00:03:46
> to 192.168.1.2 via fxp0.100, Pop
299840 *[VPN/170] 00:03:46
> to 192.168.1.10 via fxp0.120, Pop
bgp.l3vpn.0: 15 destinations, 15 routes (15 active, 0 holddown, 0 hidden)
+ = Active Route, - = Last Active, * = Both
2500:777:172.17.64.1/32
*[BGP/170] 00:04:46, localpref 100
AS path: 65002 I
> to 192.168.1.10 via fxp0.120
2500:777:192.168.1.8/30
*[Direct/0] 00:04:46
> via fxp0.120
2500:777:192.168.1.109/32
*[Direct/0] 00:04:46
> via lo0.125
2500:100:172.17.63.1/32
*[BGP/170] 00:04:47, localpref 100
AS path: 1000 I
> to 192.168.1.2 via fxp0.100
2500:100:172.17.68.7/32
*[BGP/170] 00:03:36, localpref 100, from 125.249.16.1
AS path: 5000 1500 I
> to 10.1.1.2 via fxp0.10, Push 16, Push 299888, Push 299776(top)
2500:100:192.168.1.0/30
*[Direct/0] 00:04:47
> via fxp0.100
2500:100:192.168.1.100/32
*[Direct/0] 00:04:47
> via lo0.105
2500:100:192.168.7.0/30
*[BGP/170] 00:03:36, localpref 100, from 125.249.16.1
AS path: 5000 I
> to 10.1.1.2 via fxp0.10, Push 16, Push 299888, Push 299776(top)
2500:100:192.168.7.77/32
*[BGP/170] 00:03:36, localpref 100, from 125.249.16.1
AS path: 5000 I
> to 10.1.1.2 via fxp0.10, Push 16, Push 299888, Push 299776(top)
2500:666:172.17.62.1/32
*[BGP/170] 00:04:45, localpref 100
AS path: 65000 I
> to 192.168.1.2 via fxp0.110
2500:666:172.17.67.7/32
*[BGP/170] 00:03:36, localpref 100, from 125.249.16.1
AS path: 5000 65001 I
> to 10.1.1.2 via fxp0.10, Push 17, Push 299888, Push 299776(top)
2500:666:192.168.1.0/30
*[Direct/0] 00:04:45
> via fxp0.110
2500:666:192.168.1.105/32
*[Direct/0] 00:04:45
> via lo0.115
2500:666:192.168.7.0/30
*[BGP/170] 00:03:36, localpref 100, from 125.249.16.1
AS path: 5000 I
> to 10.1.1.2 via fxp0.10, Push 17, Push 299888, Push 299776(top)
2500:666:192.168.7.107/32
*[BGP/170] 00:03:36, localpref 100, from 125.249.16.1
AS path: 5000 I
> to 10.1.1.2 via fxp0.10, Push 17, Push 299888, Push 299776(top)
inet6.3: 8 destinations, 8 routes (8 active, 0 holddown, 0 hidden)
+ = Active Route, - = Last Active, * = Both
::ffff:10.1.4.0/126*[BGP/170] 00:03:46, localpref 100, from 202.162.208.7
AS path: 777 I
> to 10.1.1.2 via fxp0.10, Push 299856, Push 299776(top)
::ffff:10.1.5.0/126*[BGP/170] 00:03:47, localpref 100, from 202.162.208.7
AS path: 777 5000 I
> to 10.1.1.2 via fxp0.10, Push 299872, Push 299776(top)
::ffff:67.100.150.1/128
*[BGP/170] 00:03:46, localpref 100, from 202.162.208.7
AS path: 777 I
> to 10.1.1.2 via fxp0.10, Push 299856, Push 299776(top)
::ffff:125.249.16.1/128
*[BGP/170] 00:03:47, localpref 100, from 202.162.208.7
AS path: 777 5000 I
> to 10.1.1.2 via fxp0.10, Push 299888, Push 299776(top)
::ffff:125.249.16.7/128
*[BGP/170] 00:03:47, localpref 100, from 202.162.208.7
AS path: 777 5000 I
> to 10.1.1.2 via fxp0.10, Push 299872, Push 299776(top)
::ffff:125.249.16.254/128
*[BGP/170] 00:03:47, localpref 100, from 202.162.208.7
AS path: 777 5000 I
> to 10.1.1.2 via fxp0.10, Push 299904, Push 299776(top)
::ffff:202.162.208.7/128
*[LDP/9] 00:04:11, metric 1
> to 10.1.1.2 via fxp0.10, Push 299776
::ffff:202.162.208.254/128
*[LDP/9] 00:04:20, metric 1
> to 10.1.1.2 via fxp0.10
vpnab.inet6.0: 3 destinations, 3 routes (3 active, 0 holddown, 0 hidden)
+ = Active Route, - = Last Active, * = Both
2001:5c0:7::/126 *[BGP/170] 00:03:37, localpref 100, from 125.249.16.1
AS path: 5000 I
> to 10.1.1.2 via fxp0.10, Push 17, Push 299888, Push 299776(top)
2001:d30:7::/126 *[BGP/170] 00:03:37, localpref 100, from 125.249.16.1
AS path: 5000 I
> to 10.1.1.2 via fxp0.10, Push 17, Push 299888, Push 299776(top)
2001:d30:7::777/128*[BGP/170] 00:03:37, localpref 100, from 125.249.16.1
AS path: 5000 I
> to 10.1.1.2 via fxp0.10, Push 17, Push 299888, Push 299776(top)
vpnv6.inet6.0: 10 destinations, 10 routes (10 active, 0 holddown, 0 hidden)
+ = Active Route, - = Last Active, * = Both
2001:5c0:1::/126 *[Static/5] 00:04:43
> to 2001:d30:1::3 via fxp0.110
2001:5c0:7::/126 *[BGP/170] 00:03:37, localpref 100, from 125.249.16.1
AS path: 5000 I
> to 10.1.1.2 via fxp0.10, Push 17, Push 299888, Push 299776(top)
2001:d30:1::/126 *[Direct/0] 00:04:43
> via fxp0.110
2001:d30:1::1/128 *[Local/0] 00:04:43
Local via fxp0.110
2001:d30:1::100/128*[Direct/0] 00:04:44
> via lo0.115
2001:d30:7::/126 *[BGP/170] 00:03:37, localpref 100, from 125.249.16.1
AS path: 5000 I
> to 10.1.1.2 via fxp0.10, Push 17, Push 299888, Push 299776(top)
2001:d30:7::777/128*[BGP/170] 00:03:37, localpref 100, from 125.249.16.1
AS path: 5000 I
> to 10.1.1.2 via fxp0.10, Push 17, Push 299888, Push 299776(top)
fe80::/64 *[Direct/0] 00:04:43
> via fxp0.110
fe80::2aa:0:6e00:101/128
*[Local/0] 00:04:43
Local via fxp0.110
fe80::2aa:ff:fe00:101/128
*[Direct/0] 00:04:44
> via lo0.115
bgp.l3vpn-inet6.0: 6 destinations, 6 routes (6 active, 0 holddown, 0 hidden)
+ = Active Route, - = Last Active, * = Both
2500:666:2001:5c0:1::/126
*[Static/5] 00:04:43
> to 2001:d30:1::3 via fxp0.110
2500:666:2001:5c0:7::/126
*[BGP/170] 00:03:37, localpref 100, from 125.249.16.1
AS path: 5000 I
> to 10.1.1.2 via fxp0.10, Push 17, Push 299888, Push 299776(top)
2500:666:2001:d30:1::/126
*[Direct/0] 00:04:43
> via fxp0.110
2500:666:2001:d30:1::100/128
*[Direct/0] 00:04:44
> via lo0.115
2500:666:2001:d30:7::/126
*[BGP/170] 00:03:37, localpref 100, from 125.249.16.1
AS path: 5000 I
> to 10.1.1.2 via fxp0.10, Push 17, Push 299888, Push 299776(top)
2500:666:2001:d30:7::777/128
*[BGP/170] 00:03:37, localpref 100, from 125.249.16.1
AS path: 5000 I
> to 10.1.1.2 via fxp0.10, Push 17, Push 299888, Push 299776(top)
Let we see CE-AB router can communicate between CE1,CE2(VRF: vpn) and CE3,CE4(VRF: vpnv6) but between CE1 and CE2 cannot communicate each other
root# run ping logical-system ceAB 172.17.67.7 source 172.17.64.1
PING 172.17.67.7 (172.17.67.7): 56 data bytes
64 bytes from 172.17.67.7: icmp_seq=0 ttl=63 time=7.383 ms
64 bytes from 172.17.67.7: icmp_seq=1 ttl=63 time=5.699 ms
64 bytes from 172.17.67.7: icmp_seq=2 ttl=63 time=13.743 ms
64 bytes from 172.17.67.7: icmp_seq=3 ttl=63 time=5.810 ms
64 bytes from 172.17.67.7: icmp_seq=4 ttl=63 time=6.233 ms
^C
— 172.17.67.7 ping statistics —
5 packets transmitted, 5 packets received, 0% packet loss
round-trip min/avg/max/stddev = 5.699/7.774/13.743/3.044 ms
root# run ping logical-system ceAB 172.17.68.7 source 172.17.64.1
PING 172.17.68.7 (172.17.68.7): 56 data bytes
64 bytes from 172.17.68.7: icmp_seq=0 ttl=63 time=8.634 ms
64 bytes from 172.17.68.7: icmp_seq=1 ttl=63 time=5.902 ms
64 bytes from 172.17.68.7: icmp_seq=2 ttl=63 time=6.017 ms
64 bytes from 172.17.68.7: icmp_seq=3 ttl=63 time=6.635 ms
64 bytes from 172.17.68.7: icmp_seq=4 ttl=63 time=6.948 ms
^C
— 172.17.68.7 ping statistics —
5 packets transmitted, 5 packets received, 0% packet loss
round-trip min/avg/max/stddev = 5.902/6.827/8.634/0.983 ms
root# …system ce3 2001:5c0:7::1 source 2001:5c0:1::1 size 512
PING6(560=40+8+512 bytes) 2001:d30:1::3 –> 2001:5c0:7::1
520 bytes from 2001:5c0:7::1, icmp_seq=0 hlim=63 time=20.109 ms
520 bytes from 2001:5c0:7::1, icmp_seq=1 hlim=63 time=7.028 ms
520 bytes from 2001:5c0:7::1, icmp_seq=2 hlim=63 time=7.439 ms
520 bytes from 2001:5c0:7::1, icmp_seq=3 hlim=63 time=7.936 ms
520 bytes from 2001:5c0:7::1, icmp_seq=4 hlim=63 time=6.246 ms
520 bytes from 2001:5c0:7::1, icmp_seq=5 hlim=63 time=11.596 ms
520 bytes from 2001:5c0:7::1, icmp_seq=6 hlim=63 time=6.660 ms
^C
— 2001:5c0:7::1 ping6 statistics —
7 packets transmitted, 7 packets received, 0% packet loss
round-trip min/avg/max/std-dev = 6.246/9.573/20.109/4.604 ms
If you want to see all configuration download at this link