Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 28 Jul 2018 13:31:11 +0000
From:      bugzilla-noreply@freebsd.org
To:        wireless@FreeBSD.org
Subject:   [Bug 230098] wpa_supplicant v2.6 is not connected at startup (was: wlan is not connected after reboot)
Message-ID:  <bug-230098-21060-4gJLaia0FH@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-230098-21060@https.bugs.freebsd.org/bugzilla/>
References:  <bug-230098-21060@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help

https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=230098

--- Comment #6 from Cy Schubert <cy@FreeBSD.org> ---
This looks similar to my setup. The main difference I see is that you must set
the MAC address of your primary interface on all your lagg interfaces, as
documented in the handbook.

Use your ethernet MAC address as I do here (this works BTW):

case $kq_machine in
3623)   hostname=daisy
        WLANADDR="00:XX:XX:XX:XX:XX"
        ETH=rl0;;
4752|*) hostname=slippy
        WLANADDR="20:XX:XX:XX:XX:XX"
        ETH=bge0;;
esac

ifconfig_wlan0="WPA -bgscan scanvalid 16959 roaming manual bmiss 120"
ifconfig_bge0="-tso4 wol up"
ifconfig_lagg0_ipv6="inet6 -ifdisabled accept_rtadv autoconf"
ifconfig_lagg0="laggproto failover laggport $ETH laggport wlan0 DHCP"
ifconfig_wlan0="$MAC $ifconfig_wlan0 up"
create_args_wlan0="wlanaddr $WLANADDR"
cloned_interfaces="lagg0"

The next question is, it appears you are configured for EAP. Is this correct?
Does it work with PSK?

-- 
You are receiving this mail because:
You are the assignee for the bug.


Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-230098-21060-4gJLaia0FH>