diff options
author | lassulus <lassulus@lassul.us> | 2020-08-19 21:16:46 +0200 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2020-08-19 21:16:46 +0200 |
commit | 0b4329eb0a24e5f6e5935f6242c7087015fdf104 (patch) | |
tree | 20b4b0302b601827c49adff0add17e66e3609cf0 /tv/2configs/nets | |
parent | 6538131f91ce9dbedc8efaa6c1d6196ad5b0f3d6 (diff) | |
parent | 358633f9737c8327d6028ebfadf72cbb51df70fb (diff) |
Merge remote-tracking branch 'ni/master'
Diffstat (limited to 'tv/2configs/nets')
-rw-r--r-- | tv/2configs/nets/hkw.nix | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/tv/2configs/nets/hkw.nix b/tv/2configs/nets/hkw.nix new file mode 100644 index 000000000..725e63b13 --- /dev/null +++ b/tv/2configs/nets/hkw.nix @@ -0,0 +1,69 @@ +{ + krebs = { + dns.providers.hkw = "hosts"; + hosts = { + nomic = { + nets.hkw = { + ip4 = { + addr = "10.23.1.110"; + prefix = "10.23.1.0/24"; + }; + aliases = [ + "nomic.hkw" + ]; + ssh.port = 11423; + }; + }; + ok = { + external = true; + nets.hkw = { + ip4 = { + addr = "10.23.1.1"; + prefix = "10.23.1.0/24"; + }; + aliases = [ + "ok.hkw" + ]; + }; + }; + wu = { + nets.hkw = { + ip4 = { + addr = "10.23.1.37"; + prefix = "10.23.1.0/24"; + }; + aliases = [ + "wu.hkw" + "cache.wu.hkw" + ]; + ssh.port = 11423; + }; + }; + xu = { + nets.hkw = { + ip4 = { + addr = "10.23.1.38"; + prefix = "10.23.1.0/24"; + }; + aliases = [ + "xu.hkw" + "cache.xu.hkw" + ]; + ssh.port = 11423; + }; + }; + zu = { + nets.hkw = { + ip4 = { + addr = "10.23.1.39"; + prefix = "10.23.1.0/24"; + }; + aliases = [ + "zu.hkw" + ]; + ssh.port = 11423; + }; + }; + }; + }; +} |