2023-09-11 21:51:13 +00:00
|
|
|
{ pkgs, adblock-unbound, ... }:
|
|
|
|
{
|
2023-09-12 08:25:55 +00:00
|
|
|
networking.firewall.allowedUDPPorts = [ 67 ];
|
|
|
|
|
2023-09-11 21:51:13 +00:00
|
|
|
services.kea.dhcp4 = {
|
|
|
|
enable = true;
|
2023-10-08 17:32:00 +00:00
|
|
|
|
2023-09-11 21:51:13 +00:00
|
|
|
settings = {
|
|
|
|
interfaces-config = {
|
2023-09-12 08:25:55 +00:00
|
|
|
dhcp-socket-type = "raw";
|
2023-09-11 21:51:13 +00:00
|
|
|
interfaces = [
|
|
|
|
"enabcm6e4ei0"
|
|
|
|
"wlan0"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
lease-database = {
|
|
|
|
name = "/var/lib/kea/dhcp4.leases";
|
|
|
|
persist = true;
|
|
|
|
type = "memfile";
|
|
|
|
};
|
|
|
|
|
|
|
|
rebind-timer = 2000;
|
|
|
|
renew-timer = 1000;
|
|
|
|
valid-lifetime = 4000;
|
|
|
|
|
|
|
|
subnet4 = [
|
|
|
|
{
|
|
|
|
subnet = "192.168.178.0/24";
|
|
|
|
pools = [
|
|
|
|
{ pool = "192.168.178.2 - 192.168.178.255"; }
|
|
|
|
];
|
|
|
|
|
|
|
|
option-data = [
|
|
|
|
{
|
|
|
|
name = "domain-name-servers";
|
|
|
|
space = "dhcp4";
|
|
|
|
csv-format = true;
|
|
|
|
data = "192.168.178.2";
|
|
|
|
always-send = true;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "routers";
|
|
|
|
data = "192.168.178.1";
|
|
|
|
always-send = true;
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
reservations = [
|
2023-10-10 11:37:17 +00:00
|
|
|
{
|
2023-10-19 18:55:56 +00:00
|
|
|
hostname = "pie.local";
|
|
|
|
hw-address = "dc:a6:32:5c:31:64";
|
|
|
|
ip-address = "192.168.178.2";
|
2023-10-10 11:37:17 +00:00
|
|
|
}
|
2023-09-11 21:51:13 +00:00
|
|
|
{
|
|
|
|
hostname = "droppie.local";
|
2023-09-29 16:21:08 +00:00
|
|
|
hw-address = "08:f1:ea:97:0f:0c";
|
2023-09-11 21:51:13 +00:00
|
|
|
ip-address = "192.168.178.3";
|
|
|
|
}
|
|
|
|
{
|
2023-10-19 18:55:56 +00:00
|
|
|
hostname = "brwb8763f64a364.local";
|
|
|
|
hw-address = "b8:76:3f:64:a3:64";
|
|
|
|
ip-address = "192.168.178.4";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
hostname = "chocolatebar.local";
|
2023-10-19 21:16:23 +00:00
|
|
|
hw-address = "04:d9:f5:fa:35:f5";
|
2023-10-19 18:55:56 +00:00
|
|
|
ip-address = "192.168.178.5";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
hostname = "biolimo.local";
|
|
|
|
hw-address = "c6:f2:d1:df:ed:a4";
|
|
|
|
ip-address = "192.168.178.6";
|
2023-09-11 21:51:13 +00:00
|
|
|
}
|
|
|
|
];
|
|
|
|
}
|
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
services.kea.dhcp6 = {
|
|
|
|
enable = true;
|
|
|
|
settings = {
|
|
|
|
interfaces-config = {
|
|
|
|
interfaces = [
|
|
|
|
"enabcm6e4ei0"
|
|
|
|
"wlan0"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
lease-database = {
|
|
|
|
name = "/var/lib/kea/dhcp6.leases";
|
|
|
|
persist = true;
|
|
|
|
type = "memfile";
|
|
|
|
};
|
2023-10-08 17:32:00 +00:00
|
|
|
|
|
|
|
subnet6 = [
|
|
|
|
{
|
2023-10-11 12:31:39 +00:00
|
|
|
subnet = "2a02:908:5b1:e3c0::/59";
|
2023-10-08 17:32:00 +00:00
|
|
|
|
|
|
|
pools = [
|
2023-10-11 12:31:39 +00:00
|
|
|
{ pool = "2a02:908:5b1:e3c0::/59"; }
|
2023-10-08 17:32:00 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
option-data = [
|
|
|
|
{
|
|
|
|
name = "dns-servers";
|
|
|
|
code = 23;
|
|
|
|
space = "dhcp6";
|
|
|
|
csv-format = true;
|
2023-10-21 21:16:35 +00:00
|
|
|
data = "2a02:908:5b1:e3c0:3077:2::";
|
2023-10-08 17:32:00 +00:00
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
reservations = [
|
|
|
|
{
|
|
|
|
hostname = "droppie.local";
|
|
|
|
hw-address = "08:f1:ea:97:0f:0c";
|
|
|
|
ip-addresses = [
|
2023-10-21 21:16:35 +00:00
|
|
|
"2a02:908:5b1:e3c0:3077:3::"
|
2023-10-08 17:32:00 +00:00
|
|
|
];
|
|
|
|
}
|
|
|
|
{
|
|
|
|
hostname = "pie.local";
|
|
|
|
hw-address = "dc:a6:32:5c:31:64";
|
|
|
|
ip-addresses = [
|
2023-10-21 21:16:35 +00:00
|
|
|
"2a02:908:5b1:e3c0:3077:2::"
|
2023-10-08 17:32:00 +00:00
|
|
|
];
|
|
|
|
}
|
2023-10-19 22:37:08 +00:00
|
|
|
{
|
|
|
|
hostname = "chocolatebar.local";
|
|
|
|
hw-address = "04:d9:f5:fa:35:f5";
|
|
|
|
ip-addresses = [
|
2023-10-21 21:16:35 +00:00
|
|
|
"2a02:908:5b1:e3c0:3077:5::"
|
2023-10-19 22:37:08 +00:00
|
|
|
];
|
|
|
|
}
|
|
|
|
{
|
|
|
|
hostname = "biolimo.local";
|
|
|
|
hw-address = "c6:f2:d1:df:ed:a4";
|
|
|
|
ip-addresses = [
|
2023-10-21 21:16:35 +00:00
|
|
|
"2a02:908:5b1:e3c0:3077:6::"
|
2023-10-19 22:37:08 +00:00
|
|
|
];
|
|
|
|
}
|
2023-10-08 17:32:00 +00:00
|
|
|
];
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
2023-09-11 21:51:13 +00:00
|
|
|
rebind-timer = 2000;
|
|
|
|
renew-timer = 1000;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|