From owner-freebsd-questions@FreeBSD.ORG Fri Oct 24 16:20:43 2014 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3E964B45 for ; Fri, 24 Oct 2014 16:20:43 +0000 (UTC) Received: from sola.nimnet.asn.au (paqi.nimnet.asn.au [115.70.110.159]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 960E8A86 for ; Fri, 24 Oct 2014 16:20:42 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by sola.nimnet.asn.au (8.14.2/8.14.2) with ESMTP id s9OGKW5j099772; Sat, 25 Oct 2014 03:20:32 +1100 (EST) (envelope-from smithi@nimnet.asn.au) Date: Sat, 25 Oct 2014 03:20:32 +1100 (EST) From: Ian Smith To: Anthony Simm Subject: Re: wireless networking In-Reply-To: Message-ID: <20141025014151.R56328@sola.nimnet.asn.au> References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Cc: freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Oct 2014 16:20:43 -0000 In freebsd-questions Digest, Vol 542, Issue 5, Message: 6 On Fri, 24 Oct 2014 10:54:47 +0200 Anthony Simm wrote: > I have installed FreeBSD 9.3-RELEASE on an IBM T42 box and have problems > to connect it's wireless card to the router / to the internet. > > I have read this > https://www.freebsd.org/doc/handbook/network-wireless.html > > and followed the chapter > > 31.3.2. Quick Start > > and have done this > > > ifconfig | grep -A4 -i wireless > > which gives > > media: IEEE 802.11 Wireless Ethernet autoselect (autoselect) > status: no carrier > plip0: flags=8810 metric 0 mtu 1500 > nd6 options=29 > lo0: flags=8049 metric 0 mtu 16384 > > I added an entry with the correct details to /etc/wpa_supplicant.conf > > > network={ > > ssid="myssid" > > psk="mypsk" > > } > > and added these details to /etc/rc.conf > > > > > wlans_ath0="wlan0" > > ifconfig_wlan0="WPA SYNCDHCP" > > > Reboot, no wireless connection. Does the T42 have a hard wireless en/disable switch? Just a thought. > Then I followed the next chapter, > > 31.3.3. Basic Setup > 31.3.3.1. Kernel Configuration > > and added the following lines to /boot/loader.conf > > > if_ath_load="YES" > > if_wi_load="YES" > > (/boot/loader.conf was previously empty but did exist) > > > Reboot, no connection. ath for Atheros chips, and wi for ancient WaveLAN cards (I have one :) > ifconfig gives entries for em0, ipw0, plip0, and lo0 > > The one for ipw0 reads: > > ipw0: flags=8802 metric 0 mtu 2290 > ether 00:0c:f1:5e:4c:58 > nd6 options=29 > media: IEEE 802.11 Wireless Ethernet autoselect (autoselect) > status: no carrier > > (Do you need the output for em0, ipw0, and plip0 as well?) No, but full information on your ipw0 from 'devinfo -v' and 'pciconf -lvce' would better identify the particular card, if it's not just that: 'kldstat -v' output on 9.3 includes pci/ipw and most other wireless drivers already included, so you shouldn't need to load anything apart from legal.intel_ipw.license_ack=1 in loader.conf as detailed in ipw(4) and the (up to) three firmware modules needed, as detailed in ipwfw(4) > I have read everything on that page all the way down to > > > 31.3.8. Troubleshooting > > but am scratching my head and can't decide what else to do. > > I will check the forums but I thought I should mention that I did not > find an answer in the handbook to this probably frequently occurring > setup problem. > > Thank you very much, > > Anthony I don't know the present status of ipw(4) at all, but if it works on anyone's T42 it should work on yours. Seems ipw doesn't do AP mode. If that's no help I'd suggest posting to freebsd-wireless@freebsd.org where wireless-cogniscenti will get to see it. Adrian will encourage you to run 11.0-CURRENT :) but others may be able to assist with 9.3 cheers, Ian