Hi!
I am not really good at BGP and VRF's.
I want to have a BGP Connection between a CE and a PE, with BGP running in a VRF on both sides. I need the VR on the Customer Router to be able to seperate traffic there as well.
My Problem is: The Connection is not being established. Can you please have a look at my configuration?
I have two VRF's on the PE, one for Internet-Access that i want to make avialable to the customer VRF.
----------------------------------------------------------------------------------------------------------------
CE:
<CE>display curr conf bgp
#
bgp 65000
router-id 10.178.10.1
peer 10.178.100.1 as-number 208968
#
ipv4-family unicast
undo synchronization
peer 10.178.100.1 enable
#
ipv4-family vpn-instance 65000:200
as-number 208968
router-id 10.178.100.2
network 10.178.100.0 255.255.255.252
import-route direct
peer 10.178.100.1 as-number 208968
peer 10.178.100.1 connect-interface LoopBack2
#
return
<CE>disp curr conf vpn-instance
#
ip vpn-instance 65000:200
description KundenVRF
ipv4-family
route-distinguisher 65000:200
vpn-target 65000:200 export-extcommunity
vpn-target 65000:200 import-extcommunity
#
ip vpn-instance __LOCAL_OAM_VPN__
ipv4-family
#
ip dcn vpn-instance __dcn_vpn__
ipv4-family
#
return
----------------------------------------------------------------------------------------------------------------
PE:
<PE>displ curr conf bgp
#
bgp 208968
router-id 10.178.0.3
peer 10.178.0.2 as-number 208968
peer 10.178.100.2 as-number 65000
#
ipv4-family unicast
undo synchronization
peer 10.178.0.2 enable
peer 10.178.100.2 enable
#
ipv4-family vpnv4
policy vpn-target
peer 10.178.0.2 enable
#
ipv4-family vpn-instance 65000:200
router-id 10.178.100.1
network 10.178.100.0 255.255.255.252
import-route direct
peer 10.178.100.2 as-number 65000
peer 10.178.100.2 connect-interface LoopBack2
<PE>displ curr conf vpn-instance
#
ip vpn-instance 208968:100
description internet_lite
ipv4-family
route-distinguisher 208968:100
vpn-target 208968:100 export-extcommunity
vpn-target 208968:100 import-extcommunity
#
ip vpn-instance 65000:200
description KundenVRF
ipv4-family
route-distinguisher 65000:200
vpn-target 65000:200 export-extcommunity
vpn-target 65000:200 import-extcommunity
vpn-target 208968:100 import-extcommunity
#
#
return
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Output from running BGP on PE (it has a session to a P-Router established):
<PE>display bgp all sum
BGP local router ID : 10.178.0.3
Local AS number : 3.12360
Address Family:Ipv4 Unicast
--------------------------------------------------------------------------------------------
Total number of peers : 2 Peers in established state : 1
Peer AS MsgRcvd MsgSent OutQ Up/Down State RtRcv RtAdv
10.178.0.2 3.12360 200 205 0 02:50:54 Established 0 0
10.178.100.2 65000 0 0 0 02:51:05 Idle 0 0
Address Family:Vpnv4 All
--------------------------------------------------------------------------------------------
Total number of peers : 2 Peers in established state : 1
Peer AS MsgRcvd MsgSent OutQ Up/Down State RtRcv RtAdv
10.178.0.2 3.12360 200 205 0 02:50:54 Established 0 3
Peer of IPv4-family for vpn instance :
VPN-Instance 65000:200, Router ID 10.178.100.1:
Peer AS MsgRcvd MsgSent OutQ Up/Down State RtRcv RtAdv
10.178.100.2 65000 0 0 0 02:51:05 Connect 0 0
<PE>
-------------------------------------------------------------------------------------------------------------------------------------------------------------------
Output from running BGP on CE:
<CE>disp bgp all sum
BGP local router ID : 10.178.10.1
Local AS number : 65000
Address Family:Ipv4 Unicast
--------------------------------------------------------------------------------------------
Total number of peers : 1 Peers in established state : 0
Peer AS MsgRcvd MsgSent OutQ Up/Down State RtRcv RtAdv
10.178.100.1 3.12360 0 0 0 00:35:59 Idle 0 0
Address Family:Vpnv4 All
--------------------------------------------------------------------------------------------
Total number of peers : 1 Peers in established state : 0
Peer of IPv4-family for vpn instance :
VPN-Instance 65000:200, Router ID 10.178.100.2:
Peer AS MsgRcvd MsgSent OutQ Up/Down State RtRcv RtAdv
10.178.100.1 3.12360 0 2 0 00:35:59 Connect 0 0
<CE>
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Thanks for any help on this,
Christian