Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 19 Feb 2003 07:44:02 +0100 (CET)
From:      Marcel Stangenberger <marcel@hayholt.org>
To:        Fozzy the Bear <mikemcmillan@sbcglobal.net>
Cc:        freebsd-questions@FreeBSD.ORG
Subject:   Re: DHCPD Error
Message-ID:  <20030219074102.F80840@eldar.hayholt.org>
In-Reply-To: <20030219003205.20000.qmail@web80006.mail.yahoo.com>
References:  <20030219003205.20000.qmail@web80006.mail.yahoo.com>

next in thread | previous in thread | raw e-mail | index | archive | help
> expression relating different types
>   if (defines (ddns-fwd-name) and ddns-fwd-name !=
> can't parse standard dns updater!
>

DDNS doesn't require to be "ad-hoc" but it does need to know what to do
with it.

> http://transamrit.net/files/dhcpd.conf is what my conf
> file looks like.
>

I rewrote your dhcpd.conf to a functional one, try it out :-)

--
ddns-update-style none;
ddns-updates off;
subnet 192.168.0.0 netmask 255.255.255.0
{
        option domain-name-servers 192.168.0.1;
        option domain-name "BathNet.net";
        option subnet-mask 255.255.255.0;
        option broadcast-address 192.168.0.255;
        option routers 192.168.0.1;
#        option netbios-name-servers 192.168.0.1;
        default-lease-time 600;
        max-lease-time 7200;
        range 192.168.0.10 192.168.0.30;
}

host TheCart
{
	hardware ethernet 00:50:FC:44:18:38;
	fixed-address 192.168.0.2;
}
--


Good luck,

Marcel

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-questions" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20030219074102.F80840>