Actions
Bug #1555
closedWrong DHCP configuration option when activating "Deny unknown clients"
Start date:
05/25/2011
Due date:
% Done:
100%
Estimated time:
Plus Target Version:
Release Notes:
Affected Version:
2.0
Affected Architecture:
Description
Hello everybody,
There is a bug in the generated dhcpd.conf when enabling "Deny unknown clients".
the resulting option is "deny unknown clients;" but it should be "deny unknown-clients;".
To correct this bug, you need to change in /etc/inc/services.inc
line 278
:
$dhcpdconf .= " deny unknown clients;\n";
by
$dhcpdconf .= " deny unknown-clients;\n";
Actions