From b2388319636dde3df448dd1f09e098a33171d138 Mon Sep 17 00:00:00 2001 From: Luke Granger-Brown Date: Thu, 7 Apr 2022 04:13:33 +0100 Subject: [PATCH] frantech-nyc01: no more bgp --- ops/nixos/frantech-nyc01/default.nix | 33 ---------------------------- 1 file changed, 33 deletions(-) diff --git a/ops/nixos/frantech-nyc01/default.nix b/ops/nixos/frantech-nyc01/default.nix index 7c4f285b60..6febeaa5a6 100644 --- a/ops/nixos/frantech-nyc01/default.nix +++ b/ops/nixos/frantech-nyc01/default.nix @@ -9,7 +9,6 @@ let in { imports = [ ../lib/frantech.nix - ../lib/bgp.nix ]; networking = { @@ -25,37 +24,5 @@ in { }; my.ip.tailscale = "100.99.236.25"; - services.lukegbgp = let local = { - asn = 205479; - }; in { - enable = true; - config = { - local = { - routerID = "199.195.254.60"; - }; - export = { - #v4 = ["92.118.29.0/24"]; - }; - peering = { - frantech = { - local = local // { - v4 = "199.195.254.60"; - v6 = "2605:6400:10:c77::1"; - }; - remote = { - asn = 53667; - export_community = 4000; - routers = [{ - v4 = "169.254.169.179"; - v6 = "2605:6400:ffff::2"; - multihop = 2; - password = machineSecrets.bgpPassword; - }]; - }; - }; - }; - }; - }; - system.stateVersion = "21.05"; }