Enable EIGRP in VRF’s on Cisco

 

Introduction:

This post will show you how to enable EIGRP routing for particular VRF’s. Enabling EIGRP inside a VRF requires few special commands as compared to enabling it for the GRT (Global Routing Table).

address-family ipv4 vrf {vrf_name}

  • address-family ipv4 vrf – tells the router to enable EIGRP IPv4 routing for VRF
  • {vrf_name} – This should be the VRF name for which you intend to enable routing

Configuration Example:

Topology

R1:
router eigrp 20
!
address-family ipv4 vrf CustA
network 10.1.1.0 0.0.0.255
network 192.168.1.0
autonomous-system 20
eigrp router-id 1.0.0.1
exit-address-family
!
address-family ipv4 vrf CustB
network 10.1.1.0 0.0.0.255
network 192.168.1.0
autonomous-system 30
eigrp router-id 1.0.0.2
exit-address-family
!
address-family ipv4 vrf CustC
network 10.1.1.0 0.0.0.255
network 192.168.1.0
autonomous-system 40
eigrp router-id 1.0.0.3
exit-address-family
!

R2:
router eigrp 20
!
address-family ipv4 vrf CustA
network 20.1.1.0 0.0.0.255
network 192.168.1.0
autonomous-system 20
eigrp router-id 2.0.0.1
exit-address-family
!
address-family ipv4 vrf CustB
network 20.1.1.0 0.0.0.255
network 192.168.1.0
autonomous-system 30
eigrp router-id 2.0.0.2
exit-address-family
!
address-family ipv4 vrf CustC
network 20.1.1.0 0.0.0.255
network 192.168.1.0
autonomous-system 40
eigrp router-id 2.0.0.3
exit-address-family
!