-
Notifications
You must be signed in to change notification settings - Fork 349
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
frr: upgrade to 10.2 and migrate protocols to unified FRRender class
- Loading branch information
Showing
88 changed files
with
2,202 additions
and
2,579 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,20 @@ | ||
! | ||
interface {{ ifname }} | ||
{% if evpn.es_df_pref is vyos_defined %} | ||
evpn mh es-df-pref {{ evpn.es_df_pref }} | ||
{% endif %} | ||
{% if evpn.es_id is vyos_defined %} | ||
evpn mh es-id {{ evpn.es_id }} | ||
{% endif %} | ||
{% if evpn.es_sys_mac is vyos_defined %} | ||
evpn mh es-sys-mac {{ evpn.es_sys_mac }} | ||
{% endif %} | ||
{% if evpn.uplink is vyos_defined %} | ||
{% if interfaces is vyos_defined %} | ||
{% for if_name, if_config in interfaces.items() %} | ||
interface {{ if_name }} | ||
{% if if_config.evpn.es_df_pref is vyos_defined %} | ||
evpn mh es-df-pref {{ if_config.evpn.es_df_pref }} | ||
{% endif %} | ||
{% if if_config.evpn.es_id is vyos_defined %} | ||
evpn mh es-id {{ if_config.evpn.es_id }} | ||
{% endif %} | ||
{% if if_config.evpn.es_sys_mac is vyos_defined %} | ||
evpn mh es-sys-mac {{ if_config.evpn.es_sys_mac }} | ||
{% endif %} | ||
{% if if_config.evpn.uplink is vyos_defined %} | ||
evpn mh uplink | ||
{% endif %} | ||
{% endif %} | ||
exit | ||
! | ||
{% endfor %} | ||
{% endif %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -70,3 +70,4 @@ router openfabric {{ name }} | |
exit | ||
! | ||
{% endfor %} | ||
! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.