diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2024-10-19 20:24:25 +0200 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2024-10-19 20:24:25 +0200 |
commit | bdd0e280c3615907e494bc45543257d9a9576e5a (patch) | |
tree | d6df2012b7d2c364dfc8a5a6ce3db13c4b3143c6 /tnet/templates/knot | |
parent | 26eb144e6bb2a754849cc24e85fe9991c82e4882 (diff) | |
download | infra-bdd0e280c3615907e494bc45543257d9a9576e5a.tar.gz infra-bdd0e280c3615907e494bc45543257d9a9576e5a.tar.bz2 infra-bdd0e280c3615907e494bc45543257d9a9576e5a.tar.xz infra-bdd0e280c3615907e494bc45543257d9a9576e5a.zip |
bird
Diffstat (limited to 'tnet/templates/knot')
-rw-r--r-- | tnet/templates/knot/bird-tnet.conf | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/tnet/templates/knot/bird-tnet.conf b/tnet/templates/knot/bird-tnet.conf index f21be09..699c0f2 100644 --- a/tnet/templates/knot/bird-tnet.conf +++ b/tnet/templates/knot/bird-tnet.conf @@ -10,8 +10,6 @@ template bgp tnet_tpl { direct; - password "trygvis"; - ipv6 { next hop self; import filter { @@ -40,6 +38,7 @@ template bgp tnet_tpl { protocol bgp tnet_conflatorio from tnet_tpl { neighbor fe80:47fc:660:b91f:1063:a6ae:46bb:7588; interface "tnet-confltrio"; + password "{{ bgp_password['conflatorio-knot'] }}"; rr client; } @@ -47,6 +46,7 @@ protocol bgp tnet_conflatorio from tnet_tpl { protocol bgp tnet_coregonus from tnet_tpl { neighbor fe80:ba82:77f0:f96d:7a85:a7fa:ef6f:37d3; interface "tnet-coregonus"; + password "{{ bgp_password['coregonus-knot'] }}"; rr client; } @@ -54,6 +54,7 @@ protocol bgp tnet_coregonus from tnet_tpl { protocol bgp tnet_hash from tnet_tpl { neighbor fe80:3b20:4cb0:5315:22a:c7de:a45b:8a7d; interface "tnet-hash"; + password "{{ bgp_password['hash-knot'] }}"; rr client; } @@ -61,6 +62,7 @@ protocol bgp tnet_hash from tnet_tpl { protocol bgp tnet_kv24ix from tnet_tpl { neighbor fe80:fef1:078a:5b64:efd3:ae7b:d286:d7cf; interface "tnet-kv24ix"; + password "{{ bgp_password['knot-kv24ix'] }}"; rr client; } @@ -68,6 +70,7 @@ protocol bgp tnet_kv24ix from tnet_tpl { protocol bgp tnet_lhn2pi from tnet_tpl { neighbor fe80:d83a:350b:2162:6eda:1cc1:9cd7:80e9; interface "tnet-lhn2pi"; + password "{{ bgp_password['knot-lhn2pi'] }}"; rr client; } @@ -75,6 +78,7 @@ protocol bgp tnet_lhn2pi from tnet_tpl { protocol bgp tnet_node1 from tnet_tpl { neighbor fe80:58eb:3930:1815:2a6d:8918:70c9:96f3; interface "tnet-node1"; + password "{{ bgp_password['knot-node1'] }}"; rr client; } @@ -82,6 +86,7 @@ protocol bgp tnet_node1 from tnet_tpl { protocol bgp tnet_node2 from tnet_tpl { neighbor fe80:9dd8:abac:cf05:aea3:dc03:4c74:32db; interface "tnet-node2"; + password "{{ bgp_password['knot-node2'] }}"; rr client; } |