diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-01-24 13:07:55 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-01-24 13:07:55 +0100 |
commit | 0c52790b49bfa41d13950ee30b746f9d9a2339b0 (patch) | |
tree | e01f620d95934d8f4c7f7ed6c4ee7b29ea33b6c2 /data/templates/frr/bgp.frr.tmpl | |
parent | 9a85a43795d4ce91d815ae33a0bf4b9aa0806283 (diff) | |
download | vyos-1x-0c52790b49bfa41d13950ee30b746f9d9a2339b0.tar.gz vyos-1x-0c52790b49bfa41d13950ee30b746f9d9a2339b0.zip |
bgp: T2850: bugfix templating neighbor interface statements
Diffstat (limited to 'data/templates/frr/bgp.frr.tmpl')
-rw-r--r-- | data/templates/frr/bgp.frr.tmpl | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/data/templates/frr/bgp.frr.tmpl b/data/templates/frr/bgp.frr.tmpl index 6fe88151f..2deee245d 100644 --- a/data/templates/frr/bgp.frr.tmpl +++ b/data/templates/frr/bgp.frr.tmpl @@ -52,6 +52,22 @@ {% if config.update_source is defined and config.update_source is not none %} neighbor {{ neighbor }} update-source {{ config.update_source }} {% endif %} +{% if config.interface is defined and config.interface is not none %} +{% if config.interface.peer_group is defined and config.interface.peer_group is not none %} + neighbor {{ neighbor }} interface peer-group {{ config.interface.peer_group }} +{% endif %} +{% if config.interface.remote_as is defined and config.interface.remote_as is not none %} + neighbor {{ neighbor }} interface remote-as {{ config.interface.remote_as }} +{% endif %} +{% if config.interface.v6only is defined and config.interface.v6only is not none %} +{% if config.interface.v6only.peer_group is defined and config.interface.v6only.peer_group is not none %} + neighbor {{ neighbor }} interface v6only peer-group {{ config.interface.v6only.peer_group }} +{% endif %} +{% if config.interface.v6only.remote_as is defined and config.interface.v6only.remote_as is not none %} + neighbor {{ neighbor }} interface v6only remote-as {{ config.interface.v6only.remote_as }} +{% endif %} +{% endif %} +{% endif %} ! {% if config.address_family is defined and config.address_family is not none %} {% for af in config.address_family %} |