Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 5 Apr 2002 12:07:46 +0200
From:      Alex <freebsd@akruijff.dds.nl>
To:        "G D McKee" <freebsd@gdmckee.com>
Cc:        "Freebsd-Questions@Freebsd. Org (E-mail)" <freebsd-questions@freebsd.org>
Subject:   Re: Dynamic DNS and DHCPD
Message-ID:  <796665905.20020405120746@dds.nl>
In-Reply-To: <001401c1dbe7$85464db0$c800a8c0@p1000>
References:  <001401c1dbe7$85464db0$c800a8c0@p1000>

next in thread | previous in thread | raw e-mail | index | archive | help
Hello G,

Thursday, April 04, 2002, 4:46:35 PM, you wrote:

GDM> Got it all working - well it does from windows machines but not FreeBSD
GDM> boxes.  Windows machines get there address and register with the DNS
GDM> server - very neat.  The FreeBSD gets the address and sets up the rest of
GDM> the config - like the dns server ip address and the domain suffix but they
GDM> fail to register with the DNS server.

GDM> Oh have tried a static IP address on one FreeBSD box and I get the following
GDM> message

GDM> 04-Apr-2002 11:32:18.186 security: info: approved AXFR from
GDM> [192.168.0.2].1038 for "gdmckee.local"

GDM> and the DCHP way I get nothing in the log files at all.

What software are you using from this. There are multiple DNS and DCHP
servers. I asume bot are isc. It would be helpfull if you provided
more information. (i.e. what are your settings and such)

I don't know a answer to the DNS issue. As for the static ip address
with DHCP. (lol)... You must make sure the address is not in any range.
The following example is out of my dhcpd.conf file:

subnet 192.168.31.0 netmask 255.255.255.0 {
        option subnet-mask 255.255.255.0;
        option broadcast-address 192.168.31.255;
        option routers 192.168.31.2;
        option domain-name-servers 192.168.31.2;
        option domain-name "domain.org";

        range 192.168.31.128 192.168.31.255;
}

host alex {
        hardware ethernet 01:02:03:04:05:06;
        fixed-address 192.168.31.64;
}

-- 
Best regards,
 Alex                            mailto:freebsd@akruijff.dds.nl


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?796665905.20020405120746>