You need to open each of the three files mentioned and look at the cited lines. My guess is that they refer to configuration database values that no longer exist.
You can open the files one at a time in pico:
pico /etc/e-smith/templates-custom//etc/dhcpd.conf/25DomainNameServers
If you don't understand the cited lines, then post them here to see what might be going on. Also post the output of 'db configuration show dhcpd'.
[root@aplus-webserver root]# /sbin/e-smith/db configuration show dhcpd
dhcpd=service
end=192.168.0.250
start=192.168.0.101
status=disabled
[root@aplus-webserver root]#
pico /etc/e-smith/templates-custom//etc/dhcpd.conf/25DomainNameServers
{
local %conf;
$conf{'dhcpd'} = $dhcpd;
local $dhcpdnscustom = db_get_prop(\%conf, 'dhcpd', 'dnscustom');
local $dhcpdns1server = db_get_prop(\%conf, 'dhcpd', 'dns1server');
local $dhcpdns2server = db_get_prop(\%conf, 'dhcpd', 'dns2server');
if ($dhcpdnscustom eq 'enabled')
{
if ($dhcpdns2server eq "" )
{
$OUT .= " option domain-name-servers $dhcpdns1server;";
}
else
{
$OUT .= " option domain-name-servers $dhcpdns1server, $dhcpdns2server;";
}
}
else
{
$OUT .= " option domain-name-servers $LocalIP;";
}
}
pico /etc/e-smith/templates-custom//etc/dhcpd.conf/25NetbiosNameServers
{
local %conf;
$conf{'dhcpd'} = $dhcpd;
local $dhcpwinscustom = db_get_prop(\%conf, 'dhcpd', 'winscustom');
local $dhcpwinsserver = db_get_prop(\%conf, 'dhcpd', 'winsserver');
if ($dhcpwinscustom eq 'enabled')
{
$OUT .= " option netbios-name-servers $dhcpwinsserver;";
}
else
{
return "" unless $DHCP_WINSServer;
return " option netbios-name-servers $DHCP_WINSServer;";
}
}
pico /etc/e-smith/templates-custom//etc/dhcpd.conf/25Routers
{
local %conf;
$conf{'dhcpd'} = $dhcpd;
local $dhcpgatewaycustom = db_get_prop(\%conf, 'dhcpd', 'gatewaycustom');
local $dhcpgateway = db_get_prop(\%conf, 'dhcpd', 'gateway');
if ($dhcpgatewaycustom eq 'enabled')
{
$OUT .= " option routers $dhcpgateway;";
}
else
{
my $router = (defined $SystemMode && $SystemMode =~ /servergateway/)
? $LocalIP :
defined $GatewayIP ? $GatewayIP : undef;
$OUT = "";
if ($router)
{
$OUT .= " option routers $router;";
}
}
}