From owner-freebsd-amd64@FreeBSD.ORG Mon Aug 28 17:05:24 2006 Return-Path: X-Original-To: freebsd-amd64@freebsd.org Delivered-To: freebsd-amd64@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E787216A5C2 for ; Mon, 28 Aug 2006 17:05:24 +0000 (UTC) (envelope-from geekout@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.189]) by mx1.FreeBSD.org (Postfix) with ESMTP id 291BB43D7B for ; Mon, 28 Aug 2006 17:04:55 +0000 (GMT) (envelope-from geekout@gmail.com) Received: by nf-out-0910.google.com with SMTP id n29so1434382nfc for ; Mon, 28 Aug 2006 10:04:37 -0700 (PDT) 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:content-transfer-encoding:content-disposition:references; b=gJFqTm6DJT5U+Cc2CR2L2dvcFOUcIFW+FJ7Ypnno2dB82fcW8hM+DvsV7L2MyOfaBf9FYr7zJ6iOPyKaHslnwApFTgQZ6W0gbKN/Za0bw0CNbyU1AK+Ox4VFPiLKmOlvjCPMwWbNDJjr61yaA26yS/QZQhvM57Gy5ciQlBuKAoI= Received: by 10.49.29.2 with SMTP id g2mr9248307nfj; Mon, 28 Aug 2006 10:04:37 -0700 (PDT) Received: by 10.48.14.12 with HTTP; Mon, 28 Aug 2006 10:04:36 -0700 (PDT) Message-ID: <6e01203b0608281004n57c17fb5lc1d0483182f803c7@mail.gmail.com> Date: Mon, 28 Aug 2006 07:04:36 -1000 From: "Tyler Gee" To: Bill In-Reply-To: <20060828061159.38507.qmail@web37510.mail.mud.yahoo.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <6e01203b0608271102k1418bd23u1bb51af1d42d6a37@mail.gmail.com> <20060828061159.38507.qmail@web37510.mail.mud.yahoo.com> Cc: FreeBSD Subject: Re: ifconfig wi0 "10 number HEX key" arg ? (SOLVED) X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 17:05:25 -0000 On 8/27/06, Bill wrote: > --- Tyler Gee wrote: > > > On 8/27/06, Bill wrote: > > > Hello Family, > > > > > > I'm on a wifi network where all the other Unix(like) and Windows > > > laptops seem to be able to pass a "ten" (10) digit number as the > > > "hex" key. > > > > > > In the "ifconfig" manpage for FreeBSD-6.1 it states, under the > > > stanza for "wepkey" that the number must be 5 or 13 chars long. > > > > > > The number that is being used for the 10 digit key is: > > > > > > 1466466946 > > > > Try 0x1466466946 > > > > Thanks Tyler, > > I actually had tried that with the "ifconfig" command and got an > error/complaint and by a stroke of luck tried "wicontrol" with the > above syntax and it took, so here is my little script that I run and it > works fine now, thanks for the timely nudge back into the right > direction! > > I'm not exactly sure the "perfect" order of which to set these params > but it works as it is. I'm open for any enhancements to the script :) Well, if it works that is great and I would go with it. :) I was thinking wicontrol is deprecated, but can't actually remember if that is true or not. Just curious, what was the command you were giving to ifconfig that was giving the error? > ##################################################### > > #!/bin/sh > # > echo > echo "Flushing old routes..." ; echo > /sbin/route flush > > echo "Bringing down old interface..." ; echo > /sbin/ifconfig wi0 down > > echo "Setting up SSID for AP..." ; echo > ifconfig wi0 ssid wheatgrass > > echo "Turning on wepmode..." ; echo > ifconfig wi0 wepmode on > > echo "Setting up static ip of 192.168.1.222" ; echo > ifconfig wi0 192.168.1.222 broadcast 192.168.1.255 netmask > 255.255.255.0 > > echo "Brining up interface wi0..." ; echo > ifconfig wi0 up > > echo "Setting up wepkey..." ; echo > wicontrol wi0 wepkey 0x1466466946 > > echo "Setting up route to access point of 192.168.1.1 " ; echo > route add default 192.168.1.1 > > echo "Let's ping the GW at 192.168.1.1 three times..." ; echo > ping -c3 192.168.1.1 > > ########################################################## > > __________________________________________________ > Do You Yahoo!? > Tired of spam? Yahoo! Mail has the best spam protection around > http://mail.yahoo.com > -- ~Tyler