Limiting Redistribution
When designing complex networks with multiple redistribution points, you must somehow limit redistribution so that loops are prevented. Next Iâll show you my method of choice, which involves tagging routes and filtering with route maps.
Route Tags
Many routing protocolsâfor example, EIGRP, OSPF, and RIPv2 (but not RIPv1)âallow you tag routes with values when redistributing them. The route tags are nothing more than numbers within the range of 0â4,294,967,295 (unfortunately, the tags cannot be alphanumeric). Route tags do not affect the protocolâs actions; the tag is simply a field to which you can assign a value to use elsewhere.
To set a route tag when redistributing into OSPF, add the tag
tag#
keyword to
the redistribute
command:
R2(config-router)#redistribute eigrp 100 metric 10 subnets tag 2
This command will redistribute routes from EIGRP 100 into OSPF.
The OSPF metric will be 10, and the tag will be 2. To see the tags in
OSPF routes, use the show ip ospf database
command. Redistributed routes will be external routes. The last column
will be the tags for these routes:
R2#sho ip ospf dat
OSPF Router with ID (10.10.10.2) (Process ID 100) Router Link States (Area 0) Link ID ADV Router Age Seq# Checksum Link count 10.10.10.2 10.10.10.2 128 0x80000002 0x00F5BA 1 20.20.20.1 20.20.20.1 129 0x80000002 0x009DD9 1 Net Link States (Area 0) Link ID ADV Router Age Seq# Checksum 10.10.10.1 20.20.20.1 129 0x80000001 0x00B5CA Type-5 AS External Link States Link ...
Get Network Warrior, 2nd Edition now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.