From d8cb96926c3c71173f2ed97713610d632e7a0b4e Mon Sep 17 00:00:00 2001 From: Robert Gingras Date: Tue, 28 Oct 2025 19:55:15 +0000 Subject: [PATCH] refactor: update DHCP range and options in dnsmasq configuration --- dnsmasq-service/dnsmasq.conf | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/dnsmasq-service/dnsmasq.conf b/dnsmasq-service/dnsmasq.conf index ff6cbd48..7dd55aea 100644 --- a/dnsmasq-service/dnsmasq.conf +++ b/dnsmasq-service/dnsmasq.conf @@ -7,7 +7,8 @@ listen-address=127.0.0.1,10.15.0.3 server=8.8.8.8 # DHCP range -dhcp-range=10.15.0.10,10.15.254.254,255.255.0.0,24h +dhcp-range=set:net15,10.15.0.10,10.15.254.254,255.255.0.0,24h +dhcp-range=set:net16,10.16.0.10,10.16.254.254,255.255.0.0,24h # Static reservations (MAC optional, just use hostname mapping for now) dhcp-host=ct100,10.15.0.100,infinite @@ -15,7 +16,8 @@ dhcp-host=ct101,10.15.0.101,infinite # DHCP options dhcp-authoritative -dhcp-option=option:router,10.15.0.1 +dhcp-option=tag:net15,option:router,10.15.0.1 +dhcp-option=tag:net16,option:router,10.16.0.1 dhcp-option=option:dns-server,10.15.0.3 # dnsmasq itself is the DNS server # DNS handling