12-22-2016 07:11 PM - edited 03-05-2019 07:43 AM
Hello,
I setup a GNS3 lab to test VRF and EIGRP routing. It's a simple lab where I have two switches(VSS_Dist1 & Core1). Both have VRF SharedVRF, SVI 992, which is in VRF SharedVRF, and EIGRP 900. I advertised network 172.26.90.0/24 on both EIGRP processes on both switches. Both switches established EIGPR relationship; however, there's no entries for the any routes advertised through EIGRP. See config below.
Why can't I ping the SVI of each switch? Also, why isn't EIGRP advertising the networks of the interfaces I included in the EIGPR process?
Thanks in advance.
========================================================================
Configuration on Switch VSS_Dist1_LAB
VSS_Dist1_LAB#
ip vrf SharedVRF
!
interface Vlan992
description SharedVRF to Core1_LAB
ip vrf forwarding SharedVRF
ip address 172.26.90.17 255.255.255.248
!
router eigrp 1902
no auto-summary
!
address-family ipv4 vrf SharedVRF
network 2.2.2.2 0.0.0.0
network 172.26.90.0 0.0.0.255
no auto-summary
autonomous-system 900
exit-address-family
!
Output:
VSS_Dist1_LAB#sh ip route eigrp 900
VSS_Dist1_LAB#
VSS_Dist1_LAB#sh ip eigrp vrf SharedVRF neighbors
IP-EIGRP neighbors for process 900
H Address Interface Hold Uptime SRTT RTO Q Seq
(sec) (ms) Cnt Num
0 172.26.90.19 Vl992 11 00:41:24 2003 5000 0 11
VSS_Dist1_LAB#ping vrf SharedVRF 172.26.90.19
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 172.26.90.19, timeout is 2 seconds:
.....
Success rate is 0 percent (0/5)
VSS_Dist1_LAB#
============================================================================
Configuration on Switch VSS_Dist1_LAB
Core1_LAB#
ip vrf SharedVRF
!
interface Vlan992
description SharedVRF to VSS_DIST1
ip vrf forwarding SharedVRF
ip address 172.26.90.19 255.255.255.248
!
router eigrp 1902
no auto-summary
!
address-family ipv4 vrf SharedVRF
network 2.2.2.2 0.0.0.0
network 172.26.90.0 0.0.0.255
no auto-summary
autonomous-system 900
exit-address-family
!
Core1_LAB#sh ip eigrp vrf SharedVRF neighbors
IP-EIGRP neighbors for process 900
H Address Interface Hold Uptime SRTT RTO Q Seq
(sec) (ms) Cnt Num
0 172.26.90.17 Vl992 14 00:45:31 2071 5000 0 7
Core1_LAB#
Core1_LAB#ping vrf SharedVRF 172.26.90.17
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 172.26.90.17, timeout is 2 seconds:
.....
Success rate is 0 percent (0/5)
======================
12-23-2016 05:04 AM
Hi Zekebashi,
1. Ping you initiated to test the connectivity should work without EIGRP also. There is something else which is blocking this ping. "debug ip icmp" output may help to identify the direction of the problem.
2. If you have route via EIGRP and via directly connected, you will never see it via EIGRP in route table.
3. You must enter command "show ip eigrp vrf SharedVRF topology" to check them. Output will look like below.
#sh ip eigrp vrf SharedVRF topology
EIGRP-IPv4 Topology Table for AS(900)/ID(172.26.90.17) VRF(SharedVRF)
Codes: P - Passive, A - Active, U - Update, Q - Query, R - Reply,
r - reply Status, s - sia Status
P 172.26.90.16/29, 1 successors, FD is 281600
via Connected, Vlan992.
Please rate if it helped
HTH
-Amit