cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
1079
Views
4
Helpful
17
Replies

Redistribution Static Route on NX-OS Nexus 7000

malickmbaye
Level 1
Level 1

Hello,

I have a N7K which is configured with multiple VDC (VDC-DIST and VDC-CORE). i have EIGRP routing activated on the two VDC and the neighboring is working fine. I am also able to redistributed direct network connected from the DIST to the CORE. But the redistribution of static routes created on DIST is not working. The CORE don't see those routes via the EIGRP. Can someone help me please, i am new on NX-OS

Configuration of DIST:

ip prefix-list REDISTRIBUTION seq 5 permit 0.0.0.0/0 le 32

 

route-map redist-static permit 10
match ip address prefix-list REDISTRIBUTION
redistribute direct route-map redist-static
redistribute static route-map redist-static

 

 

router eigrp VIN
autonomous-system 1
router-id 0.0.0.230
redistribute direct route-map redist-static
redistribute static route-map redist-static
address-family ipv4 unicast

 

ip route 10.254.0.152/30 10.101.222.100

------

The route 10.254.0.152 is not seen from the CORE.

 

 

1 Accepted Solution

Accepted Solutions

Hello
try applying the redistribution under the AFI for ipv4 also maybe tag the static instead,   then test again

router eigrp vin
no redistribute direct route-map redist-static
no redistribute static route-map redist-static

address-family ipv4 unicast
redistribute static route-map redist-static

also possibly ...
ip route 10.254.0.152/30 10.101.222.100 tag 10

no route-map redist-static permit 10

route-map redist-static permit 10
match tag 10



Please rate and mark as an accepted solution if you have found any of the information provided useful.
This then could assist others on these forums to find a valuable answer and broadens the community’s global network.

Kind Regards
Paul

View solution in original post

17 Replies 17