From 55e3f87208faa740c4f8b3e53714683b17adee68 Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Thu, 10 Jun 2021 13:31:48 +0200 Subject: [PATCH] Add bird config --- v3-calico/bird.conf | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 v3-calico/bird.conf diff --git a/v3-calico/bird.conf b/v3-calico/bird.conf new file mode 100644 index 0000000..7b45426 --- /dev/null +++ b/v3-calico/bird.conf @@ -0,0 +1,18 @@ +# Place7 k8s on bare metal +protocol bgp place_servers_v6 { + local as 213081; + neighbor range 2a0a:e5c0:13::/64 as 65534; + + dynamic name "place7-server"; + + ipv6 { + # What we accept from this protocol -> others send us + import filter { + if net ~ [ 2a0a:e5c0:13::/48+ ] then accept; + reject; + }; + + # What we export into this protocol -> what we send + export none; + }; +}