I'm having trouble properly configuring my laptop wireless on my FreeBSD 10.1 installation.
At boot time, it gives me this message.
Here is my /etc/rc.conf
My /boot/loader.conf
My /etc/wpa_supplicant.conf
If I use ifconfig_wlan0="SYNCDHCP" in my /etc/rc.conf instead, it will sometimes get a DHCP offer from my home wifi, but if there are no offers, it tries to use the last lease it had, but it still doesn't work.
I added some values in my /etc/dhclient.conf to no avail.
I would like to get the wpa_supplicant(8) and DHCP working properly, so I can use my laptop when I am out and about and need to connect to WiFi.
Advice would be greatly appreciated! Thank You!
At boot time, it gives me this message.
Code:
starting wpa_supplicant.
starting dhclient.
wlan0: no link ...................... giving up
etc/rc.d/dhclient: WARNING: failed to start dhclient
Here is my /etc/rc.conf
Code:
hostname="name"
sshd_enable="YES"
# Set dumpdev to "AUTO" to enable crash dumps, "NO"to disable"
dumpdev="AUTO"
wpa_supplicant_enable="YES"
synchronous_dhclient="YES"
wlans_bwi0="wlan0"
ifconfig_wlan0="WPA SYNCDHCP"
hald_enable="YES"
dbus_enable="YES"
My /boot/loader.conf
Code:
if_bwi_loads="YES"
kern.vty=vt
My /etc/wpa_supplicant.conf
Code:
network={
ssid="myID"
}
If I use ifconfig_wlan0="SYNCDHCP" in my /etc/rc.conf instead, it will sometimes get a DHCP offer from my home wifi, but if there are no offers, it tries to use the last lease it had, but it still doesn't work.
I added some values in my /etc/dhclient.conf to no avail.
Code:
timeout 60;
retry 60;
select-timeout 3;
reboot 10;
backoff-cutoff 120;
initial-interval 4;
I would like to get the wpa_supplicant(8) and DHCP working properly, so I can use my laptop when I am out and about and need to connect to WiFi.
Advice would be greatly appreciated! Thank You!