I have the following configuration in my dnsmasq.conf:
dhcp-range=172.16.0.100,172.16.0.254,255.255.255.0,12h
From range 172.16.0.1-99 we assign static IP address to important servers and from 172.16.0.100-254 we assign dynamic addresses.
We started using OpenVPN some time ago and the server hosting the service created a lot of virtual interfaces, sometimes using all of the IP addresses the DHCP has, causing a mess in the network.
I wanted to change the network mask to 255.255.0.0, to increase the number of IP addresses and leave the static IP range untouched.
How can I achieve this using this dhcp-range
attribute dnsmasq offers?