Add bird config
This commit is contained in:
parent
46770797f2
commit
55e3f87208
1 changed files with 18 additions and 0 deletions
18
v3-calico/bird.conf
Normal file
18
v3-calico/bird.conf
Normal file
|
@ -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;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue