You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, we install separate routines for installing native IGP routes and SR routes in respective ribs. We need to write common routine to achieve the same goal. Reason for this is that, for features which require to implement the logic in route installation path would need to be implemented twice (code duplicacy) in both routines.
If we have one unified routine, then future features (such as microloop avoidance) can be easily implemented. Only implementation would work for all types of routes (IGP or SR).
The text was updated successfully, but these errors were encountered:
Another problem is that : Currently, we install primary nexthops and backup nexthops one by one in RIB for each route. We need to push the entire route along with all nexthops (primary and backups) into RIB in one go.
Currently, we install separate routines for installing native IGP routes and SR routes in respective ribs. We need to write common routine to achieve the same goal. Reason for this is that, for features which require to implement the logic in route installation path would need to be implemented twice (code duplicacy) in both routines.
If we have one unified routine, then future features (such as microloop avoidance) can be easily implemented. Only implementation would work for all types of routes (IGP or SR).
The text was updated successfully, but these errors were encountered: