Lists all of the journal entries for the day.

Thu, 15 Feb 2007

2:48 PM - Wireless

I just got a refurbished thinkpad and I'm working on getting wireless up.  Here are some helpful references:

http://dannyman.toldme.com/2005/01/05/freebsd-howto-ndisulate-windows-drivers/
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/network-wireless.html
http://taosecurity.blogspot.com/2006/02/linksys-wpc54g-with-freebsd-yesterday.html

The linksys WPC54GS version 2 is a Broadcom chipset so avoid it if possible.  I believe you must use an ndis wrapper with this card.  I've managed to get that working,, but using a native driver is certainly better. 

()

4:11 PM - More on wireless

Setting up an airport express based network is a pain with BSD or Windows.   My configuration is with WPA2 personal and non broadcasted SSID.  Most everything in google is about WEP.  WPA2 only does not play nice with my setup on the airport end. 

Here's my working config for reference:

/etc/wpa_supplicant.conf

ctrl_interface=/var/run/wpa_supplicant
ctrl_interface_group=wheel
ap_scan=2

network={
    ssid="The name of my lovely network"
    scan_ssid=1
    proto=WPA2
    key_mgmt=WPA-PSK
    psk=myhexkey
}

if you don't use a hex value... use quotes for psk=
/etc/rc.conf ...
ifconfig_ndis0="WPA DHCP"

(this could be the problem with WPA vs WPA2 above)

This does seem to work.  I have two airport express wireless routers with the latest firmware (6.3 i think) 

()