From owner-freebsd-questions@FreeBSD.ORG Thu Nov 2 18:48:47 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3F3B916A403 for ; Thu, 2 Nov 2006 18:48:47 +0000 (UTC) (envelope-from af300wsm@gmail.com) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.203]) by mx1.FreeBSD.org (Postfix) with ESMTP id A658B43D46 for ; Thu, 2 Nov 2006 18:48:40 +0000 (GMT) (envelope-from af300wsm@gmail.com) Received: by nz-out-0102.google.com with SMTP id o37so157932nzf for ; Thu, 02 Nov 2006 10:48:40 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:references; b=pfuEQzLG8m4w6rZvc0Esf6amQxiFjFuzA3c1RmXQyHhfavm+LaW5zZ/G8J7jIOtT1+ryrHnZ1GEGfs5Ywlewrz7XF7E2WcJxZM44i6JtNUPK4ARrez0761nlfJFARhhN8NUMbgyCeMYh6zQllJ1/Kx/iJ6v1HFdf/JSoNvWzEvU= Received: by 10.35.19.9 with SMTP id w9mr1444741pyi.1162493319858; Thu, 02 Nov 2006 10:48:39 -0800 (PST) Received: by 10.35.121.10 with HTTP; Thu, 2 Nov 2006 10:48:39 -0800 (PST) Message-ID: <340a29540611021048i2e113fbcj4ac2ff7d4d4fa245@mail.gmail.com> Date: Thu, 2 Nov 2006 11:48:39 -0700 From: "Andrew Falanga" To: "Steve Bertrand" In-Reply-To: <20061102152746.D0ACB43D72@mx1.FreeBSD.org> MIME-Version: 1.0 References: <340a29540611020711v50a08a2ge07490323cf37af0@mail.gmail.com> <20061102152746.D0ACB43D72@mx1.FreeBSD.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-questions Subject: Re: Change an IP address without a reboot 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: Thu, 02 Nov 2006 18:48:47 -0000 On 11/2/06, Steve Bertrand wrote: > > mybox# ifconfig > rl0: flags=8843 mtu 1500 > options=8 > inet 208.70.104.3 netmask 0xffffff80 broadcast 208.70.104.127 > inet 192.168.250.1 netmask 0xffffff00 broadcast 192.168.250.255 > > ...now, > > mybox# ifconfig rl0 delete 192.168.250.1 > > ...and finally, > > newmarlo# ifconfig > rl0: flags=8843 mtu 1500 > options=8 > inet 208.70.104.3 netmask 0xffffff80 broadcast 208.70.104.127 > This seems to work for IPv4 address as I tried the above. I added the address and then deleted it. However, when I attempt to delete the IPv6 address I've given to the interface, I continually get "bad value." For example, ifconfig sis0 inet6 fec0:1:1:1::2/64 ifconfig sis0 delete fec0:1:1:1::2 Which returns: ifconfig: fec0:1:1:1::2: Bad value I've even tried expressing all 8 "blocks" of the IPv6 address. Could this be a defect in how ifconfig handles IPv6 addresses? If so, whom do I contact to look into it? Andy