diff options
author | tv <tv@krebsco.de> | 2020-08-19 02:26:27 +0200 |
---|---|---|
committer | tv <tv@krebsco.de> | 2020-08-19 02:27:02 +0200 |
commit | c61d99ccc653c9bee950c9e2d8a3f5bf6f4d8d1c (patch) | |
tree | 7fdc4de649ea0ca0934c0245fa1f6f78a2eb1843 /tv/2configs/nets | |
parent | b0880d573677e0f32562a40d127910ec6a1d3ae2 (diff) |
tv: privatize gg23
Diffstat (limited to 'tv/2configs/nets')
-rw-r--r-- | tv/2configs/nets/gg23.nix | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/tv/2configs/nets/gg23.nix b/tv/2configs/nets/gg23.nix new file mode 100644 index 000000000..fc5d239d5 --- /dev/null +++ b/tv/2configs/nets/gg23.nix @@ -0,0 +1,69 @@ +{ + krebs = { + dns.providers.gg23 = "hosts"; + hosts = { + nomic = { + nets.gg23 = { + ip4 = { + addr = "10.23.1.110"; + prefix = "10.23.1.0/24"; + }; + aliases = [ + "nomic.gg23" + ]; + ssh.port = 11423; + }; + }; + ok = { + external = true; + nets.gg23 = { + ip4 = { + addr = "10.23.1.1"; + prefix = "10.23.1.0/24"; + }; + aliases = [ + "ok.gg23" + ]; + }; + }; + wu = { + nets.gg23 = { + ip4 = { + addr = "10.23.1.37"; + prefix = "10.23.1.0/24"; + }; + aliases = [ + "wu.gg23" + "cache.wu.gg23" + ]; + ssh.port = 11423; + }; + }; + xu = { + nets.gg23 = { + ip4 = { + addr = "10.23.1.38"; + prefix = "10.23.1.0/24"; + }; + aliases = [ + "xu.gg23" + "cache.xu.gg23" + ]; + ssh.port = 11423; + }; + }; + zu = { + nets.gg23 = { + ip4 = { + addr = "10.23.1.39"; + prefix = "10.23.1.0/24"; + }; + aliases = [ + "zu.gg23" + ]; + ssh.port = 11423; + }; + }; + }; + }; +} |