nx-os route redistribution, simplified
2014.01.06
in a previous post, i talked about nx-os route redistribution, with a route-map. if you want all your static routes to be redistributed, you can simplify your route-map. how simple? skip the prefix list! 🙂
examine your static routes…
n7k1# sh run | inc “ip route ”
ip route 0.0.0.0/0 10.0.0.2
ip route 10.10.10.0/24 10.0.0.4
ip route 10.20.10.0/20 10.0.0.1
ip route 192.168.172.0/24 10.10.10.3
create a route-map, skip the prefix list.
route-map examplestaticmap permit 10
add them to your eigrp instance…
router eigrp 14
redistribute static route-map examplestaticmap
my coworkers are clever.