> 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 [EMAIL PROTECTED]
with "unsubscribe freebsd-questions" in the body of the message

Reply via email to