# dnsmasq DHCP server for e2e internal network # Runs on the greenwave simulator (fw-isp) container # Only DHCP, no DNS (technitium handles DNS) port=0 # Listen on internal interface only interface=eth0 bind-interfaces # DHCP range: .200-.220 (small range for test clients) dhcp-range=10.226.1.200,10.226.1.220,255.255.255.0,1h # Default gateway (the greenwave router itself) dhcp-option=option:router,10.226.1.1 # DNS server (initially the router, updated by greenwave API) dhcp-option=option:dns-server,10.226.1.1 # Domain name / search domain # dhcp-option=option:domain-name,iamtheinternet.org # Short lease time for testing dhcp-lease-max=20 # Log DHCP transactions log-dhcp