En aquest mini article explique com he configurat el meu Lenovo Thinkpad x201i per a tenir Wifi a FreeBSD 10.2 RELEASE. El router és molt antic i tinc encriptació WEP a 128 bits, antigua sí, però no puc configurar-ho més ni actualitzar-ho.
En el fitxer /boot/loader.conf carregarem els mòduls dels drivers en el kernel de FreeBSD.
iwnfw_load="YES"
if_iwn_load="YES"
iwn6050="YES"
legal.intel_iwn.license_ack=1
wlan_ccmp_load="YES"
wlan_tkip_load="YES"
wlan_wep_load="YES"
wlan_ccmp_load="YES"
wlan_tkip_load="YES"
Podem fer ifconfig wlan0 up scan per a veure si podem detectar xarxes Wifi.
El meu fitxer /etc/wpa_supplicant.conf
network={
ssid="EL_MEU_WIFI"
key_mgmt=NONE
wep_key0="LA_MEUA_CONTRASENYA"
wep_tx_keyidx=0
priority=1
}
Al fitxer /etc/rc.conf
wlans_iwn0="wlan0"
#ifconfig_wlan0="-ht WPA SYNCDHCP"
ifconfig_wlan0="ssid EL_MEU_WIFI wepmode on weptxkey 1 wepkey LA_MEUA_CONTRASENYA DHCP"
(a banda, també controle les adreces mac dels meus dispositius, aleshores he fet ifconfig wlan0 per a saber la mac i l'he afegida al router).
Espere que t'ajude aquest article i t'animes a usar algun sistema operatiu lliure.