TI-LFA Protection Priorities (ISIS)
Load basic.isis.sr.enabled.cfg in the Ping Factory SR topology in EVE-NG.
Assign all interfaces on R3 beides Gi0/0/0/9 to the same SRLG.
Configure TI-LFA on R3 for the Gi0/0/0/5 link so that node protection is preferred over SRLG protection.
Answer
Explanation
When both node protection and SRLG protection are enabled, and a path providing both protection cannot be found, the path with the better protection index is used.
We can confirm the protection prorities using the following command. We see that node protection is preferred over SRLG protection because node protection has a lower index value.
The router cannot calculate a path that is both node and SRLG protecting. The only interface that is SRLG protecting is facing R9. But R9 must use R5 to get to 7.7.7.1/32, so it is SRLG protecting but not node protecting.
Due to this, R3 should calculate a backup path that is only node protecting. We can see this is the case:
If we flip the priorities around, we can force R3 to use an SRLG protecting path instead of a node protecting path:
In summary, the tiebreaker rules for TI-LFA work as follows:
If both SRLG-disjoint and node protection are configured, try to find a path that satisfies both
If no path is found, try to find a path that is either SRLG-disjoint or node protecting, which ever one has a lower index value (higher priority)
If no path is found, simply find a link-protecting path
Also note that in ISIS, tiebreakers at the AFI level are not merged with tiebreakers at the link level. (In OSPF they are merged however). So in the following example, Gi0/0/0/3 will only use node-protection as a tiebreaker.
You can use this fact to set tiebreakers back to their defaults on an interface:
In OSPF, you would use “… node-protecting disable” and “… srlg-disjoint disable” instead, to set those indexes to 0.
Last updated