nixos/magi: Add basic GoBGP configuration

This commit is contained in:
Mikael 2024-11-12 20:11:52 +01:00
parent 610571b365
commit b997a7a9ed
Signed by: mikael
SSH key fingerprint: SHA256:21QyD2Meiot7jOUVitIR5YkGB/XuXdCvLW1hE6dsri0

View file

@ -116,4 +116,20 @@
enable = true;
};
};
services.gobgpd = {
enable = true;
settings = {
global = {
as = 208250;
};
neighbors = [
{
neighbor-address = "2a0f:be00:0001::";
peer-as = 208250;
}
];
};
};
}