Solved wpa_supplicant will not connect at boot, works manually

I just updated to 11.0-RELEASE from 11.0-CURRENT.

At boot, I get a "no carrier" error message after waiting 30 seconds for network.

After boot, invoking

Code:
wpa_supplicant -i wlan0 -c /etc/wpa_supplicant.conf

Followed by "dhclient wlan0" results in functioning wifi with no issues.

I'm not sure why the network is not associating at boot.

Wifi-related parts of /etc/rc.conf:

Code:
wlans_ath0="wlan0"
ifconfig_wlan0="WPA DHCP"

/etc/wpa_supplicant.conf:

Code:
ctrl_interface=/var/run/wpa_supplicant
eapol_version=2
ap_scan=1
fast_reauth=1

network={
        ssid="MYNETWORKSSID"
        psk="MYNETWORKPASS"
        priority=5
}
network={
        priority=0
        key_mgmt=NONE
}
 
Updating SOLVED - The WiFi router had issues with IPv6 addressing. Disabling IPv6 allowed wpa_supplicant to connect at boot without issue.
 
Back
Top