https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=230098
--- Comment #6 from Cy Schubert <[email protected]> --- 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. _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-wireless To unsubscribe, send any mail to "[email protected]"
