diff --git a/host_vars/routeur-daniel.adm.crans.org/bird.yml b/host_vars/routeur-daniel.adm.crans.org/bird.yml index b356f4e44d2528cf8d2edc75c0457909baffd9fa..f4b34d23425ecad52e79748f7ef8c9b34706bf1a 100644 --- a/host_vars/routeur-daniel.adm.crans.org/bird.yml +++ b/host_vars/routeur-daniel.adm.crans.org/bird.yml @@ -17,6 +17,8 @@ loc_bird: remote: as: 212424 address: 138.195.159.249 + allow_export_prefixes: + - 185.230.76.0/22+ - name: aurore allow_local_as: 1 local: @@ -25,6 +27,8 @@ loc_bird: remote: as: 43619 address: 185.230.79.254 + allow_export_prefixes: + - 185.230.76.0/22+ ipv6: id: 185.230.79.253 binds: @@ -40,3 +44,5 @@ loc_bird: remote: as: 43619 address: 2a0c:700:28::2 + allow_export_prefixes: + - 2a0c:700::/32+ diff --git a/host_vars/routeur-gulp.cachan-adm.crans.org/bird.yml b/host_vars/routeur-gulp.cachan-adm.crans.org/bird.yml index 389a67a989b5073f7e2cef37815cdbe95fa1a4c8..f8a8c03e161aac2469acee09aaa209768520e7b0 100644 --- a/host_vars/routeur-gulp.cachan-adm.crans.org/bird.yml +++ b/host_vars/routeur-gulp.cachan-adm.crans.org/bird.yml @@ -14,6 +14,8 @@ loc_bird: remote: as: 8218 address: 158.255.113.72 + allow_export_prefixes: + - 185.230.76.0/22+ ipv6: id: 185.230.79.62 binds: @@ -28,3 +30,5 @@ loc_bird: remote: as: 8218 address: 2001:1b48:2:103::bb:1 + allow_export_prefixes: + - 2a0c:700::/32+ diff --git a/host_vars/routeur-jack.adm.crans.org/bird.yml b/host_vars/routeur-jack.adm.crans.org/bird.yml index b356f4e44d2528cf8d2edc75c0457909baffd9fa..f4b34d23425ecad52e79748f7ef8c9b34706bf1a 100644 --- a/host_vars/routeur-jack.adm.crans.org/bird.yml +++ b/host_vars/routeur-jack.adm.crans.org/bird.yml @@ -17,6 +17,8 @@ loc_bird: remote: as: 212424 address: 138.195.159.249 + allow_export_prefixes: + - 185.230.76.0/22+ - name: aurore allow_local_as: 1 local: @@ -25,6 +27,8 @@ loc_bird: remote: as: 43619 address: 185.230.79.254 + allow_export_prefixes: + - 185.230.76.0/22+ ipv6: id: 185.230.79.253 binds: @@ -40,3 +44,5 @@ loc_bird: remote: as: 43619 address: 2a0c:700:28::2 + allow_export_prefixes: + - 2a0c:700::/32+ diff --git a/host_vars/routeur-sam.adm.crans.org/bird.yml b/host_vars/routeur-sam.adm.crans.org/bird.yml index b356f4e44d2528cf8d2edc75c0457909baffd9fa..f4b34d23425ecad52e79748f7ef8c9b34706bf1a 100644 --- a/host_vars/routeur-sam.adm.crans.org/bird.yml +++ b/host_vars/routeur-sam.adm.crans.org/bird.yml @@ -17,6 +17,8 @@ loc_bird: remote: as: 212424 address: 138.195.159.249 + allow_export_prefixes: + - 185.230.76.0/22+ - name: aurore allow_local_as: 1 local: @@ -25,6 +27,8 @@ loc_bird: remote: as: 43619 address: 185.230.79.254 + allow_export_prefixes: + - 185.230.76.0/22+ ipv6: id: 185.230.79.253 binds: @@ -40,3 +44,5 @@ loc_bird: remote: as: 43619 address: 2a0c:700:28::2 + allow_export_prefixes: + - 2a0c:700::/32+ diff --git a/roles/bird/templates/bird/bird.conf.j2 b/roles/bird/templates/bird/bird.conf.j2 index c046180f49b7998440496a8f9bf60dea0829f26c..b5cd4332adbe613f528a05b9117818cad821cce0 100644 --- a/roles/bird/templates/bird/bird.conf.j2 +++ b/roles/bird/templates/bird/bird.conf.j2 @@ -51,6 +51,9 @@ protocol bgp {{ bgp.name }} { {% endif %} neighbor {{ bgp.remote.address }} as {{ bgp.remote.as }}; import all; - export all; + export filter { + if ( net ~ [ {{ bgp.allow_export_prefixes|join(', ') }} ] ) then accept; + reject; + }; } {% endfor %} diff --git a/roles/bird/templates/bird/bird6.conf.j2 b/roles/bird/templates/bird/bird6.conf.j2 index 22e276d8560c31efbcc4bd925a3497d00e999829..6c30ef117552b3aa0ba8a6fd3735388bf6823a93 100644 --- a/roles/bird/templates/bird/bird6.conf.j2 +++ b/roles/bird/templates/bird/bird6.conf.j2 @@ -50,6 +50,9 @@ protocol bgp {{ bgp.name }} { {% endif %} neighbor {{ bgp.remote.address }} as {{ bgp.remote.as }}; import all; - export all; + export filter { + if ( net ~ [ {{ bgp.allow_export_prefixes|join(', ') }} ] ) then accept; + reject; + }; } {% endfor %}