Hello everyone, I just tried FreeBSD for the first time (FreeBSD 10) on VirtualBox and I was thinking of making it a permanent installation on one of my partitions. Only problem I'm having is the wireless connection. During installation I kept getting a "DHCP leasing acquisition failed" however I used the DVD and managed to finish the installation. I tried various entries on both /etc/rc.conf and /etc/wpa_supplicant.conf but didn't have much luck. I'm using a TP-LINK TL_WN321G USB stick and I have
on my /boot/loader.conf
Here's what I have in /etc/rc.conf
And finally my /etc/wpa_supplicant.conf
Where my_ssid is the SSID of my wireless network (Thomson-blah-blah) and ******* is my 10-digit hexadecimal password (eg E4596N53HY)
Strange thing is
It works like a charm, I can ping http://www.google.com without any problems. One last thing that might be useful, during boot, rum0 interface gives "status: associated" and then:
Any help would be greatly appreciated.
Code:
if_rum_load="YES"
wlan_wep_load="YES"
Here's what I have in /etc/rc.conf
Code:
hostname="freebsd"
wlans_rum0="wlan0"
ifconfig_wlan0="DHCP"
sshd_enable="YES"
moused_enable="YES"
slim_enable="YES"
hald_enable="YES"
dbus_enable="YES"
dumpdev="AUTO"
And finally my /etc/wpa_supplicant.conf
Code:
network={
ssid="my_ssid"
key_mgmt=NONE
wep_tx_keyidx=1
wep_key1=**********
}
Strange thing is
wpa_supplicant -i wlan0 -c /etc/wpa.supplicant.conf hangs but if I use ifconfig(8) like this: ifconfig wlan0 inet 192.168.1.1 netmask 255.255.255.0 ssid my_ssid wepmode on weptxkey 1 wepkey 1:0x**********It works like a charm, I can ping http://www.google.com without any problems. One last thing that might be useful, during boot, rum0 interface gives "status: associated" and then:
Code:
starting devd
add net fe80::: gateway ::1
add net ff02::: gateway ::1
add net ::ffff:0.0.0.0: gateway ::1
add net ::0.0.0.0: gateway ::1
waiting 30s for the default route interface: .... (no carrier)
Any help would be greatly appreciated.