diff --git a/etc/inc/services.inc b/etc/inc/services.inc index 1f097b3ebb..46a61391bf 100644 --- a/etc/inc/services.inc +++ b/etc/inc/services.inc @@ -292,8 +292,8 @@ EOD; $dhcpdconf .= " next-server {$dhcpifconf['next-server']};\n"; $dhcpdconf .= " filename \"{$dhcpifconf['filename']}\";\n"; } - if (($dhcpifconf['rootpathip'] <> "") && ($dhcpifconf['rootpath'] <> "")) { - $dhcpdconf .= " option root-path \"{$dhcpifconf['rootpathip']}:{$dhcpifconf['rootpath']}\";\n"; + if ($dhcpifconf['rootpath'] <> "") { + $dhcpdconf .= " option root-path \"{$dhcpifconf['rootpath']}\";\n"; } } diff --git a/usr/local/www/services_dhcp.php b/usr/local/www/services_dhcp.php index 30481e238a..e401a3a20f 100755 --- a/usr/local/www/services_dhcp.php +++ b/usr/local/www/services_dhcp.php @@ -80,7 +80,6 @@ $pconfig['ldap'] = $config['dhcpd'][$if]['ldap']; $pconfig['netboot'] = isset($config['dhcpd'][$if]['netboot']); $pconfig['nextserver'] = $config['dhcpd'][$if]['next-server']; $pconfig['filename'] = $config['dhcpd'][$if]['filename']; -$pconfig['rootpathip'] = $config['dhcpd'][$if]['rootpathip']; $pconfig['rootpath'] = $config['dhcpd'][$if]['rootpath']; $pconfig['failover_peerip'] = $config['dhcpd'][$if]['failover_peerip']; $pconfig['netmask'] = $config['dhcpd'][$if]['netmask']; @@ -156,10 +155,6 @@ if ($_POST) { if (($_POST['nextserver'] && !is_ipaddr($_POST['nextserver']))) { $input_errors[] = "A valid IP address must be specified for the network boot server."; } - if (($_POST['rootpathip'] && !is_ipaddr($_POST['rootpathip']))) { - $input_errors[] = "A valid IP address must be specified for the NFS server."; - } - if (!$input_errors) { /* make sure the range lies within the current subnet */ @@ -224,7 +219,6 @@ if ($_POST) { $config['dhcpd'][$if]['netboot'] = ($_POST['netboot']) ? true : false; $config['dhcpd'][$if]['next-server'] = $_POST['nextserver']; $config['dhcpd'][$if]['filename'] = $_POST['filename']; - $config['dhcpd'][$if]['rootpathip'] = $_POST['rootpathip']; $config['dhcpd'][$if]['rootpath'] = $_POST['rootpath']; write_config(); @@ -306,7 +300,6 @@ function enable_change(enable_over) { document.iform.netboot.disabled = endis; document.iform.nextserver.disabled = endis; document.iform.filename.disabled = endis; - document.iform.rootpathip.disabled = endis; document.iform.rootpath.disabled = endis; document.iform.denyunknown.disabled = endis; } @@ -589,11 +582,9 @@ function show_netboot_config() {
Note: You need both a filename and a boot server configured for this to work!

- Enter the IP of the NFS-server - - and the rootpath -
- Note: You need both a NFS-server and a path configured for this to work! + Enter the root-path-string +
+ Note: string-format: iscsi:(servername):(protocol):(port):(LUN):targetname