From owner-freebsd-questions@FreeBSD.ORG Tue Jun 19 17:20:56 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 169DE16A421 for ; Tue, 19 Jun 2007 17:20:56 +0000 (UTC) (envelope-from af300wsm@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.177]) by mx1.freebsd.org (Postfix) with ESMTP id B720C13C484 for ; Tue, 19 Jun 2007 17:20:55 +0000 (UTC) (envelope-from af300wsm@gmail.com) Received: by py-out-1112.google.com with SMTP id a29so3951687pyi for ; Tue, 19 Jun 2007 10:20:55 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=BYyensOKjzmG7H37dykC6Y00shDQE6prnIamNMgbJnxnQBrsM+ErLk39lkR7ZYhGmqVCrdH3eqZ7tFgqldd9r2ch6PnEG8VvWrMBuc0FrZ+jWCzd89WnRHQFO5kgF8rclI1qHvLOmGAwd/X01nnbA8BELEt9BlRBwf5fgk8NtPo= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=EXfTS+1zoE4IE1fqg+cwPB5PRDlR0B938KTbNftNjWJklQF4qvxd8rNy3KyxClzeq5fT6PFa26tAQX5x6RiAZcK96ExghKsHPpXLvpehUhJwUUV4vUUnwZm9uv43BNH/dZrIhv4bZPdQZm0T6mbV19CU7vFpH5wdiJdEZrAtwPI= Received: by 10.35.32.9 with SMTP id k9mr13000221pyj.1182273654992; Tue, 19 Jun 2007 10:20:54 -0700 (PDT) Received: by 10.35.36.15 with HTTP; Tue, 19 Jun 2007 10:20:54 -0700 (PDT) Message-ID: <340a29540706191020t2f72197en5bf9701be0241b8e@mail.gmail.com> Date: Tue, 19 Jun 2007 11:20:54 -0600 From: "Andrew Falanga" To: "Michael K. Smith - Adhost" In-Reply-To: <17838240D9A5544AAA5FF95F8D520316022ABB51@ad-exh01.adhost.lan> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <340a29540706191001v75e6bc5dua7d461546491119c@mail.gmail.com> <17838240D9A5544AAA5FF95F8D520316022ABB51@ad-exh01.adhost.lan> Cc: freebsd-questions Subject: Re: Configuring dhcp6 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, 19 Jun 2007 17:20:56 -0000 On 6/19/07, Michael K. Smith - Adhost wrote: > Could you post your config for reference? One thing that comes to mind > is to make sure your mask is set to a /64. > > Regards, > > Mike > Sure, # The followings are a sample configuration to provide a DNS server address # for every client as well as to delegate a permanent IPv6 prefix # 2001:db8:1111::/48 to a client whose DUID is 00:01:00:01:aa:bb. option domain-name "ipv6.isolated"; option domain-name-servers fec0::1; # The followings are a sample configuration to provide an IPv6 address # from an address pool 2001:db8:1:2::1000-2000 for 3600[s]. # Note. You have to send an RA to fxp0; otherwise a client cannot be sure # about the prefix-length and the default router. If you want to prevent # stateless address configuration via RA, please set the autonomous-flag to # OFF in your RA configuration. interface sis0 { address-pool isolated_pool 3600; }; pool isolated_pool { range fec0::11 to fec0::20 ; }; As you can see, it's pretty much the /usr/local/etc/dhcp6s.conf.sample. You know, from making this post, I see that because I decided against having any "host" directives in the file, the one line that did have the subnet mask, or prefix, set to /64 is now missing. Andy