well, you are going to like this:
get internet connection through an Ethernet/cat5e cable (plug it in)
Fetch the latest ports collection, choose your style:
http://www.freebsd.org/doc/en_US.ISO...rts-using.html
Assume you are completely new, just do the portsnap method (yes do it in the terminal all as root):
cd /usr/ports
portsnap fetch
portsnap extract
then cd to ./net/bwn-firmware-kmod
make install clean
Then configure the device and your internet connection:
http://www.freebsd.org/doc/en_US.ISO...-wireless.html
Assuming you want follow by follow instructions:
add the following lines to /boot/loader.conf :
wlan_wep_load="YES"
wlan_ccmp_load="YES"
wlan_tkip_load="YES"
#if it wasn't obvious...
#oh look, firmware code!
bwn_v4_ucode_load="YES"
if_bwn_load="YES"
And then set you internets using rc.conf and ifconfig:
#I assume its your first wireless device, right?
wlans_bwn0="wlan0"
#and that you want to have acquire an ip address....
ifconfig_wlan0="DHCP"
reading the handbooks helps... even for a 3 year old fledgling like me.
hopefully I did not offend you , right?