SIMULATION
Network Topology Exhibit
Domain.com is a stock broker service that is using EIGRP AS 1 as the IGP in its network. Domain.com has decided to establish connectivity between the New York site and the Los Angeles site. NiceNet, a service provider, has been selected by Domain.com to provide the connectivity between the two sites. For this implementation NiceNet is using a MPLS VPN solution. NiceNet has already established MPLS connectivity between all of its PE routers. MPBGP connectivity has also been established on all PE routers. Domain.com has successfully completed all necessary tasks on the CE routers, and NiceNet has **MISSING***.
The RD is 10:10.
The route target for import is 17:10.
The route target for export is 17:10.
Configure EIGRP between CE11A and PE11 using AS number 10. Redistribute from BGP to EIGRP AS 10 using a metric string of 10000 100 255 1 1500.
Redistribute from EIGRP AS 10 to BGP using metric string of 1. VPN is operational when you see the routes for both the local (10.1.11.0) and the remote (10.1.12.0) sites in the VRF routing table. Click on the host computer to start the simulation.
A.
B.
C.
D.
Explanation:
ip cef
!
ip vrf customer
description customer vrf
rd 10:10
route-target export 17:10
route-target import 17:10
!
interface FastEthernet0/0
description customer
ip vrf forwarding customer
ip address 10.1.11.1 255.255.255.0
no shutdown
!
router eigrp 10
no auto-summary
!
address-family ipv4 vrf customer
redistribute bgp
default-metric 10000 100 255 1 1500
network 10.1.11.0
network 10.1.12.0
no auto-summary
exit-address-summary
!
router bgp 17
neigbor 10.1.12.1 remote-as 17
no auto-summary
!
address-family ipv4
no auto-summary
no synchronization
exit-address-family
!
address-family vpnv4
neighbor 10.1.12.1 activate
neighbor 10.1.12.1 send-community extended
exit-address-family
!
address-family ipv4 vrf customer
redistribute eigrp 10
default-metric 1
no auto-summary
no synchronization
exit-address-family
!