dhcp for homebox eth

This commit is contained in:
2026-05-14 13:45:10 -05:00
parent c5f2f55a8b
commit 75da846be1
2 changed files with 3 additions and 3 deletions

View File

@@ -61,8 +61,8 @@
ports = [
"127.0.0.1:${builtins.toString hostPort}:80"
#"127.0.0.1:53:53/tcp"
#"127.0.0.1:53:53/udp"
"127.0.0.1:53:53/tcp"
"127.0.0.1:53:53/udp"
];
volumes = [

View File

@@ -96,7 +96,7 @@
services.dnsmasq = {
enable = true;
settings = {
server = [ "192.168.101.12" ];
port = 0;
interface = "enp6s0";
dhcp-range = [ "192.168.121.2,192.168.121.254,1h" ];
};