diff options
Diffstat (limited to 'tnet/templates/bird-tnet.conf.j2')
-rw-r--r-- | tnet/templates/bird-tnet.conf.j2 | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tnet/templates/bird-tnet.conf.j2 b/tnet/templates/bird-tnet.conf.j2 index 49e9410..2ba456b 100644 --- a/tnet/templates/bird-tnet.conf.j2 +++ b/tnet/templates/bird-tnet.conf.j2 @@ -43,7 +43,11 @@ template bgp tnet_tpl { {% if policy == "tnet" %} protocol bgp tnet_{{ p }} from tnet_tpl { neighbor {{ hostvars[p].tnet_wg[inventory_hostname].address }}; +{% if peer.interface is defined %} + interface "{{ peer.interface }}"; +{% else %} interface "tnet-{{ p }}"; +{% endif %} {% if peer.rr_client|default(False) %} rr client; |