From owner-freebsd-questions@FreeBSD.ORG Tue Sep 22 12:13:17 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5B63C1065672 for ; Tue, 22 Sep 2009 12:13:17 +0000 (UTC) (envelope-from freebsd-questions@m.gmane.org) Received: from lo.gmane.org (lo.gmane.org [80.91.229.12]) by mx1.freebsd.org (Postfix) with ESMTP id 134678FC1A for ; Tue, 22 Sep 2009 12:13:16 +0000 (UTC) Received: from list by lo.gmane.org with local (Exim 4.50) id 1Mq4F5-0000Yn-Cw for freebsd-questions@freebsd.org; Tue, 22 Sep 2009 14:13:11 +0200 Received: from 78-105-124-69.zone3.bethere.co.uk ([78.105.124.69]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 22 Sep 2009 14:13:11 +0200 Received: from cdr.nil by 78-105-124-69.zone3.bethere.co.uk with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 22 Sep 2009 14:13:11 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-questions@freebsd.org From: Mark Willson Date: Tue, 22 Sep 2009 13:12:59 +0100 Lines: 30 Message-ID: References: <20090919200603.GA10036@teddy.fas.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: 78-105-124-69.zone3.bethere.co.uk User-Agent: Thunderbird 2.0.0.23 (Windows/20090812) In-Reply-To: <20090919200603.GA10036@teddy.fas.com> Sender: news Subject: Re: Microsoft "Dynamic DNS" X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Sep 2009 12:13:17 -0000 stan wrote: > I have a situation at work, where I need a FreeBSD machine to be in the > corporate DNS. We have been bought out, and the new owner says "no static > DNS entries". They use some Microsoft technogly where the client machiens > register thier names with the corprate DNS. > > My Windows laptop for instance, may get different IP addresses using DHCP > depending on what physical location I connect it in. but it's always the > same DNS name. > > Can anyone sugest where to look for information as to how this works, and > how I cna make my FreeBSD machine participate in this? > > Stan, You may also have to set the option "dhcp-client-identifier" in the /etc/dhclient.conf file. The value should be the MAC address of the interface you are requesting the DHCP address on. I think this is something that the Microsoft DHCP server expects. E.g. interface "ep0" { send host-name "andare.fugue.com"; send dhcp-client-identifier 1:0:a0:24:ab:fb:9c; } -mark