diff options
author | Christian Breunig <christian@breunig.cc> | 2023-11-07 07:06:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-07 07:06:09 +0100 |
commit | 7a4d59acaf62908a20f7aa143816c608f5479fb2 (patch) | |
tree | 337844bbc582be84a091842fed89ec48714fb51c /data/templates/frr/evpn.mh.frr.j2 | |
parent | 7b7d422e11b14989591d6847b59062b13f98d7b9 (diff) | |
parent | 91a65d29555050db4cee66568ac905ab74844823 (diff) | |
download | vyos-1x-7a4d59acaf62908a20f7aa143816c608f5479fb2.tar.gz vyos-1x-7a4d59acaf62908a20f7aa143816c608f5479fb2.zip |
Merge pull request #2444 from vyos/mergify/bp/sagitta/pr-2416
T5698 EVPN ESI Multihoming (backport #2416)
Diffstat (limited to 'data/templates/frr/evpn.mh.frr.j2')
-rw-r--r-- | data/templates/frr/evpn.mh.frr.j2 | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/data/templates/frr/evpn.mh.frr.j2 b/data/templates/frr/evpn.mh.frr.j2 new file mode 100644 index 000000000..03aaac44b --- /dev/null +++ b/data/templates/frr/evpn.mh.frr.j2 @@ -0,0 +1,16 @@ +! +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 %} + evpn mh uplink +{% endif %} +exit +! |