Moblie

Sunday, June 4, 2017

Nexus VPC with EIGRP

Nexus VPC with EIGRP

1. Only related configuration shown
2. EIGRP with VPC tested on Nexus 9K

----

 -----------R3 Router-------------

interface GigabitEthernet0/1
 description ** Nexus U1-Port Eth1/1
 ip address 10.200.22.17 255.255.255.252
 ip summary-address eigrp 100 10.0.0.0 255.0.0.0    // Option configuration
 duplex auto
 speed 1000
!
interface GigabitEthernet0/2
 description ** 2921-U2-port Gi0/2
 ip address 10.200.22.10 255.255.255.252
 ip summary-address eigrp 100 10.0.0.0 255.0.0.0   // Option configuration
 duplex auto
 speed auto

router eigrp 100
 network 10.200.22.8 0.0.0.3
 network 10.200.22.16 0.0.0.3


-----------R4-Router--------

interface GigabitEthernet0/1
 description ** Nexus U2-Port Eth1/1
 ip address 10.200.22.5 255.255.255.252
 duplex auto
 speed 1000
!
interface GigabitEthernet0/2
 description ** 2921-U1-port Gi0/2
 ip address 10.200.22.9 255.255.255.252
 ip access-group BUF-FILTER in
 duplex auto
 speed auto
!
!
router eigrp 100

 network 10.200.22.4 0.0.0.3
 network 10.200.22.8 0.0.0.3

------------Nexus-1------------


interface port-channel50
  switchport mode trunk
  switchport trunk allowed vlan 1,9,16,97,100-103,105,130,200,858
  switchport trunk allowed vlan add 970
  spanning-tree port type network
  speed 10000
  vpc peer-link

interface Ethernet1/46
  description ** Nexus-2 **
  switchport mode trunk
  switchport trunk allowed vlan 1,9,16,97,100-103,105,130,200,858
  switchport trunk allowed vlan add 970
  speed 10000
  channel-group 50 mode active

interface Ethernet1/47
  description ** Nexus-2 **
  switchport mode trunk
  switchport trunk allowed vlan 1,9,16,97,100-103,105,130,200,858
  switchport trunk allowed vlan add 970
  speed 10000
  channel-group 50 mode active


interface Ethernet1/1
  description ** R3**
  no switchport
  speed 1000
  ip address 10.200.22.18/30
  ip router eigrp 100          // Advertise Route
  no shutdown

interface Ethernet1/9
  description ** Nexus-2 **
  no switchport
  ip address 10.200.22.21/30
  no shutdown

router eigrp 100
  network 10.200.22.20/30

------------------Nexus-2-----------



interface port-channel50
  switchport mode trunk
  switchport trunk allowed vlan 1,9,16,97,100-103,105,130,200,858
  switchport trunk allowed vlan add 970
  spanning-tree port type network
  speed 10000
  vpc peer-link

interface Ethernet1/46
  description ** Nexus-1 **
  switchport mode trunk
  switchport trunk allowed vlan 1,9,16,97,100-103,105,130,200,858
  switchport trunk allowed vlan add 970
  speed 10000
  channel-group 50 mode active

interface Ethernet1/47
  description ** Nexus-1 **
  switchport mode trunk
  switchport trunk allowed vlan 1,9,16,97,100-103,105,130,200,858
  switchport trunk allowed vlan add 970
  speed 10000
  channel-group 50 mode active

interface Ethernet1/1
  description ** R4 **
  no switchport
  speed 1000
  duplex full
  ip address 10.200.22.6/30
  ip router eigrp 100
  no shutdown


interface Ethernet1/9
  no switchport
   description ** Nexu-1 **
  ip address 10.200.22.22/30
  no shutdown

router eigrp 100
  network 10.200.22.20/30

****************END********************