diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-11-04 20:35:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-04 20:35:44 +0100 |
commit | 84c7ed21629db338b207dfb11320b49fffda3b3d (patch) | |
tree | c35d9ce74f8c6acbc673b006e56ad6e3fa3967f4 /data/templates/frr/ldpd.frr.tmpl | |
parent | cb544fc3e372448e3ed098f09add767d6f449b47 (diff) | |
parent | e1174ad59d396d6e96fcbeb7b90bc5a164e3ad5c (diff) | |
download | vyos-1x-84c7ed21629db338b207dfb11320b49fffda3b3d.tar.gz vyos-1x-84c7ed21629db338b207dfb11320b49fffda3b3d.zip |
Merge pull request #595 from Cheeze-It/current
mpls-conf: T915: Add TTL security for static LDP neighbors
Diffstat (limited to 'data/templates/frr/ldpd.frr.tmpl')
-rw-r--r-- | data/templates/frr/ldpd.frr.tmpl | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/data/templates/frr/ldpd.frr.tmpl b/data/templates/frr/ldpd.frr.tmpl index 81a992165..3cdce8c70 100644 --- a/data/templates/frr/ldpd.frr.tmpl +++ b/data/templates/frr/ldpd.frr.tmpl @@ -9,9 +9,23 @@ router-id {{ router_id }} {% endif -%} {% for neighbor_id in old_ldp.neighbors -%} no neighbor {{neighbor_id}} password {{old_ldp.neighbors[neighbor_id].password}} +{% if 'ttl_security' is defined -%} +{% if 'disable' in old_ldp.neighbors[neighbor_id].ttl_security %} +no neighbor {{neighbor_id}} ttl-security disable +{% else -%} +no neighbor {{neighbor_id}} ttl-security hops {{old_ldp.neighbors[neighbor_id].ttl_security}} +{% endif -%} +{% endif -%} {% endfor -%} {% for neighbor_id in ldp.neighbors -%} neighbor {{neighbor_id}} password {{ldp.neighbors[neighbor_id].password}} +{% if 'ttl_security' is defined -%} +{% if 'disable' in ldp.neighbors[neighbor_id].ttl_security %} +neighbor {{neighbor_id}} ttl-security disable +{% else -%} +neighbor {{neighbor_id}} ttl-security hops {{ldp.neighbors[neighbor_id].ttl_security}} +{% endif -%} +{% endif -%} {% endfor -%} ! address-family ipv4 |