From c176cfc2c66f75d4a5adf5c0ca9203ca47ddbf79 Mon Sep 17 00:00:00 2001 From: Tine Date: Tue, 5 Nov 2024 20:03:46 +0100 Subject: [PATCH] fix: max dhcp leases --- openwrt/etc/config/dhcp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/openwrt/etc/config/dhcp b/openwrt/etc/config/dhcp index d186969..a17c0e9 100644 --- a/openwrt/etc/config/dhcp +++ b/openwrt/etc/config/dhcp @@ -5,6 +5,8 @@ config dnsmasq option rebind_localhost '1' option expandhosts '1' option cachesize '1000' + # Must be larger than limits for interfaces. + option dhcpleasemax '1024' option authoritative '1' option readethers '1' option leasefile '/tmp/dhcp.leases'