From 3559932cef492f1a71c2d0bec320cbdb93afbe16 Mon Sep 17 00:00:00 2001 From: Yohann D'ANELLO Date: Mon, 19 Jul 2021 21:14:44 +0200 Subject: [PATCH] [bird] Indicate which IP address should be used for local as Signed-off-by: Yohann D'ANELLO --- roles/bird/templates/bird/bird.conf.j2 | 4 ++-- roles/bird/templates/bird/bird6.conf.j2 | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/roles/bird/templates/bird/bird.conf.j2 b/roles/bird/templates/bird/bird.conf.j2 index 3529c27..309326e 100644 --- a/roles/bird/templates/bird/bird.conf.j2 +++ b/roles/bird/templates/bird/bird.conf.j2 @@ -22,14 +22,14 @@ protocol static { } protocol bgp zayo { - local as 43619; + local 83.167.52.69 as 43619; neighbor 83.167.52.68 as 8218; import all; export all; } protocol bgp crans { - local as 43619; + local 185.230.79.254 as 43619; neighbor 185.230.79.253 as 204515; import all; export all; diff --git a/roles/bird/templates/bird/bird6.conf.j2 b/roles/bird/templates/bird/bird6.conf.j2 index ee541fb..9c3d933 100644 --- a/roles/bird/templates/bird/bird6.conf.j2 +++ b/roles/bird/templates/bird/bird6.conf.j2 @@ -23,14 +23,14 @@ protocol static { } protocol bgp zayo { - local as 43619; + local 2001:1b48:2:103::d7:2 as 43619; neighbor 2001:1b48:2:103::d7:1 as 8218; import all; export all; } protocol bgp crans { - local as 43619; + local 2a0c:700:28::2 as 43619; neighbor 2a0c:700:28::1 as 204515; import all; export all;