From owner-freebsd-questions@FreeBSD.ORG Thu Jul 8 03:09:08 2004 Return-Path: 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 E0C5216A4CF for ; Thu, 8 Jul 2004 03:09:08 +0000 (GMT) Received: from asmtp-a063f33.pas.sa.earthlink.net (asmtp-a063f33.pas.sa.earthlink.net [207.217.120.149]) by mx1.FreeBSD.org (Postfix) with ESMTP id CE33243D39 for ; Thu, 8 Jul 2004 03:09:08 +0000 (GMT) (envelope-from algould@datawok.com) Received: from 20-74.lctv-b4.cablelynx.com ([24.204.20.74] helo=[192.168.63.10]) by asmtp-a063f33.pas.sa.earthlink.net with asmtp (TLSv1:RC4-MD5:128) (Exim 4.34) id 1BiPHY-0002rP-M9 for freebsd-questions@freebsd.org; Wed, 07 Jul 2004 20:09:08 -0700 From: "Andrew L. Gould" To: freebsd-questions@freebsd.org Date: Wed, 7 Jul 2004 22:10:20 -0500 User-Agent: KMail/1.6.2 References: <002401c46492$89f564a0$6501a8c0@Nomad> In-Reply-To: <002401c46492$89f564a0$6501a8c0@Nomad> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200407072210.20169.algould@datawok.com> X-ELNK-Trace: ee791d459e3d6817d780f4a490ca69564776905774d2ac4bb686dc70e29d1e1ab5350effadfcd166350badd9bab72f9c350badd9bab72f9c350badd9bab72f9c X-Originating-IP: 24.204.20.74 Subject: Re: WPC11 ver 3 or bust... X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Jul 2004 03:09:09 -0000 On Wednesday 07 July 2004 09:23 pm, Eric Crist wrote: > Hey all, > > I posted almost a week ago about not being able to use my 16-bit > PCMCIA Linksys WPC-11 v3 wifi card. This card always worked well > under 4.9, but I can't get it to work under 5.2.1. The card is > recognized, and I can even assign IP addresses and such, but it never > associates to my wireless network, even if I set ssid, channel, > media, etc, manually. If I pull the card out, I get the following > message in my logfile: > > wi0: wi_cmd: busy bit won't clear > > I'm at the point where I'm thinking of going back to 4.9 (well, 4.10 > now) so that I can use wifi again. The only reason I went to 5.2.1 > was for better power management, but that doesn't really do anything > for me anyways. > > If I can't get this to work within the next day or so, I'm going to > just reinstall 4.x. > > Thanks for your help! > > Eric How are you configuring the wireless card? I'm using the same card on 5.2.1 Release on a Dell Inspiron 8100. The only change I had to make to the scripts I used on FreeBSD 4.10 was to delete: authmode "shared" (I don't know why the change was needed since the wireless lan and access point stayed the same.) Here's the contents of the script (I've changed the addresses and codes): ifconfig wi0 inet 192.168.0.2 netmask 255.255.255.0 ssid "mywan" nwkey 0x1234567890 #(everything above should be on one line) route add default 192.168.0.1 echo domain cablelynx.com > /etc/resolv.conf echo nameserver 24.204.0.4 >> /etc/resolv.conf echo nameserver 24.204.0.5 >> /etc/resolv.conf echo wi0 If you try the script above and still get the error message, try adding the following to the beginning of the script so the script gets a clean start on the card: ifconfig wi0 remove Best of luck, Andrew Gould