From e4b8da19a4075dcb05b1cc19190395209770e1d4 Mon Sep 17 00:00:00 2001 From: Chris Buechler Date: Sat, 10 Apr 2010 14:12:58 -0400 Subject: allow hostname for TFTP server --- usr/local/www/services_dhcp.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'usr/local/www/services_dhcp.php') diff --git a/usr/local/www/services_dhcp.php b/usr/local/www/services_dhcp.php index e4697a8..cc3d1e4 100755 --- a/usr/local/www/services_dhcp.php +++ b/usr/local/www/services_dhcp.php @@ -221,8 +221,8 @@ if ($_POST) { $input_errors[] = "A valid IP address must be specified for the primary/secondary NTP servers."; if (($_POST['domain'] && !is_domain($_POST['domain']))) $input_errors[] = "A valid domain name must be specified for the DNS domain."; - if (($_POST['tftp'] && !is_ipaddr($_POST['tftp']))) - $input_errors[] = "A valid IP address must be specified for the TFTP server."; + if (($_POST['tftp'] && (!is_ipaddr($_POST['tftp']) && !is_domain($_POST['tftp'])))) + $input_errors[] = "A valid IP address or hostname must be specified for the TFTP server."; if (($_POST['nextserver'] && !is_ipaddr($_POST['nextserver']))) $input_errors[] = "A valid IP address must be specified for the network boot server."; -- cgit v1.1