Revision 7d504365
Added by Seth Mos over 13 years ago
etc/inc/services.inc | ||
---|---|---|
823 | 823 |
$dhcpdv6conf .= " max-lease-time {$dhcpv6ifconf['maxleasetime']};\n"; |
824 | 824 |
|
825 | 825 |
// ntp-servers |
826 |
/* Not supported in ISC DHCPD yet, see redmine #2016 |
|
826 | 827 |
if (is_array($dhcpv6ifconf['ntpserver']) && $dhcpv6ifconf['ntpserver'][0]) |
827 | 828 |
$dhcpdv6conf .= " option ntp-servers " . join(",", $dhcpv6ifconf['ntpserver']) . ";\n"; |
829 |
*/ |
|
828 | 830 |
|
829 | 831 |
// tftp-server-name |
830 |
if ($dhcpv6ifconf['tftp'] <> "") |
|
832 |
/* Needs ISC DHCPD support |
|
833 |
if ($dhcpv6ifconf['tftp'] <> "") |
|
831 | 834 |
$dhcpdv6conf .= " option tftp-server-name \"{$dhcpv6ifconf['tftp']}\";\n"; |
835 |
*/ |
|
832 | 836 |
|
833 | 837 |
// Handle option, number rowhelper values |
834 | 838 |
$dhcpdv6conf .= "\n"; |
Also available in: Unified diff
Comment out TFTP and NTP UI fields and block the code in services.inc.
ISC dhcpd does not support these yet. See redmine ticket #2016