dhcpd.conf deny members of

John Hascall john at iastate.edu
Mon May 26 16:38:40 UTC 2008


> So, in dhcpd.conf, for one subnet, i want to make some address pools,
> and to deny some group of hosts for it.

> For example, in address pool "server", i want to deny unknwon-clients
> AND deny members of another group of hosts (workstation or visitor). (so
> only allow members of group "server").

> I can't find a solution to do it.

You can put multiple denys in a pool.
For example:

        pool {
                range 192.168.77.71 192.168.77.99;
                deny dynamic bootp clients;
                deny members of "guest";
                deny members of "private";
                deny unknown clients;
		...
	}

John


More information about the dhcp-users mailing list