stockholm/tv/2configs/nets/hkw.nix

82 lines
1.5 KiB
Nix
Raw Normal View History

2020-08-19 00:26:27 +00:00
{
krebs = {
2020-08-19 00:30:51 +00:00
dns.providers.hkw = "hosts";
2020-08-19 00:26:27 +00:00
hosts = {
2020-09-04 23:24:43 +00:00
au = {
nets.hkw = {
ip4 = {
addr = "10.23.1.39";
prefix = "10.23.1.0/24";
};
aliases = [
"au.hkw"
];
ssh.port = 11423;
};
};
2020-08-19 00:26:27 +00:00
nomic = {
2020-08-19 00:30:51 +00:00
nets.hkw = {
2020-08-19 00:26:27 +00:00
ip4 = {
addr = "10.23.1.110";
prefix = "10.23.1.0/24";
};
aliases = [
2020-08-19 00:30:51 +00:00
"nomic.hkw"
2020-08-19 00:26:27 +00:00
];
ssh.port = 11423;
};
};
ok = {
external = true;
2020-08-19 00:30:51 +00:00
nets.hkw = {
2020-08-19 00:26:27 +00:00
ip4 = {
addr = "10.23.1.1";
prefix = "10.23.1.0/24";
};
aliases = [
2020-08-19 00:30:51 +00:00
"ok.hkw"
2020-08-19 00:26:27 +00:00
];
};
};
wu = {
2020-08-19 00:30:51 +00:00
nets.hkw = {
2020-08-19 00:26:27 +00:00
ip4 = {
addr = "10.23.1.37";
prefix = "10.23.1.0/24";
};
aliases = [
2020-08-19 00:30:51 +00:00
"wu.hkw"
"cache.wu.hkw"
2020-08-19 00:26:27 +00:00
];
ssh.port = 11423;
};
};
xu = {
2020-08-19 00:30:51 +00:00
nets.hkw = {
2020-08-19 00:26:27 +00:00
ip4 = {
addr = "10.23.1.38";
prefix = "10.23.1.0/24";
};
aliases = [
2020-08-19 00:30:51 +00:00
"xu.hkw"
"cache.xu.hkw"
2020-08-19 00:26:27 +00:00
];
ssh.port = 11423;
};
};
zu = {
2020-08-19 00:30:51 +00:00
nets.hkw = {
2020-08-19 00:26:27 +00:00
ip4 = {
2020-09-04 23:24:43 +00:00
addr = "10.23.1.40";
2020-08-19 00:26:27 +00:00
prefix = "10.23.1.0/24";
};
aliases = [
2020-08-19 00:30:51 +00:00
"zu.hkw"
2020-08-19 00:26:27 +00:00
];
ssh.port = 11423;
};
};
};
};
}