Code: Select all
emerge wgetpaste
dmesg | wgetpaste
wgetpaste ifconfigCode: Select all
###### Global Configuration ######
fast_reauth=1
ap_scan=1
ctrl_interface=/var/run/wpa_supplicant GROUP=wheel
update_config=1
eapol_version=1
###### Security Configuration ######
network={
ca_cert="/home/*****/Downloads/GTECyberTrustGlobalRoot.der"
priority=7
password="Liberty-Secure"
bssid=00:1a:1e:26:29:72
phase1="peaplabel=1"
eap=PEAP
phase2="auth=MSCHAPV2"
ssid="**********"
key_mgmt=WPA-EAP
identity="***********"
scan_ssid=1
pairwise=CCMP TKIP
proto=WPA2
}Code: Select all
Successfully initialized wpa_supplicant
wlan0: Trying to associate with 00:1a:1e:26:29:72 (SSID='Liberty-Secure' freq=5785 MHz)
ioctl[SIOCSIWFREQ]: Device or resource busy
wlan0: Association request to the driver failed
wlan0: Associated with 00:1a:1e:26:29:72
wlan0: CTRL-EVENT-EAP-STARTED EAP authentication started
wlan0: CTRL-EVENT-EAP-PROPOSED-METHOD vendor=0 method=25
wlan0: CTRL-EVENT-EAP-METHOD EAP vendor 0 method 25 (PEAP) selected
wlan0: CTRL-EVENT-EAP-PEER-CERT depth=2 subject='/C=US/O=GTE Corporation/OU=GTE CyberTrust Solutions, Inc./CN=GTE CyberTrust Global Root'
wlan0: CTRL-EVENT-EAP-PEER-CERT depth=1 subject='/DC=edu/DC=liberty/CN=LUPKI01'
wlan0: CTRL-EVENT-EAP-PEER-CERT depth=0 subject='/C=US/ST=Virginia/L=Lynchburg/O=Liberty University/OU=Information Services/CN=LUACP01.university.liberty.edu'
EAP-MSCHAPV2: Authentication succeeded
EAP-TLV: TLV Result - Success - EAP-TLV/Phase2 Completed
wlan0: CTRL-EVENT-EAP-SUCCESS EAP authentication completed successfully
wlan0: Authentication with 00:1a:1e:26:29:72 timed out.
wlan0: CTRL-EVENT-DISCONNECTED bssid=00:1a:1e:26:29:72 reason=3 locally_generated=1
wlan0: Trying to associate with 00:1a:1e:26:29:72 (SSID='Liberty-Secure' freq=5785 MHz)
ioctl[SIOCSIWFREQ]: Device or resource busy
wlan0: Association request to the driver failed
wlan0: Associated with 00:1a:1e:26:29:72
wlan0: CTRL-EVENT-EAP-STARTED EAP authentication started
wlan0: CTRL-EVENT-EAP-PROPOSED-METHOD vendor=0 method=25
wlan0: CTRL-EVENT-EAP-METHOD EAP vendor 0 method 25 (PEAP) selected
EAP-TLV: TLV Result - Success - EAP-TLV/Phase2 Completed
wlan0: CTRL-EVENT-EAP-SUCCESS EAP authentication completed successfullyCode: Select all
/etc/init.d/dhcpcd stop
/etc/init.d/NetworkManager restartCode: Select all
[ 7489.029385] cfg80211: Calling CRDA to update world regulatory domain
[ 7489.034965] cfg80211: World regulatory domain updated:
[ 7489.034967] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[ 7489.034968] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[ 7489.034969] cfg80211: (2457000 KHz - 2482000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[ 7489.034971] cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[ 7489.034972] cfg80211: (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[ 7489.034973] cfg80211: (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[ 7490.895791] wlan0: authenticate with 00:1a:1e:26:29:71
[ 7490.906197] wlan0: send auth to 00:1a:1e:26:29:71 (try 1/3)
[ 7490.910641] wlan0: authenticated
[ 7490.915060] wlan0: associate with 00:1a:1e:26:29:71 (try 1/3)
[ 7490.921398] wlan0: RX AssocResp from 00:1a:1e:26:29:71 (capab=0x401 status=0 aid=1)
[ 7490.921476] wlan0: associated

Code: Select all
# diff /usr/src/linux/drivers/net/wireless/ath/ath9k/init.c.bak /usr/src/linux/drivers/net/wireless/ath/ath9k/init.c
59a60,63
> int ath9k_modparam_disable_11n;
> module_param_named(11n_disable, ath9k_modparam_disable_11n, int, 0444);
> MODULE_PARM_DESC(11n_disable, "disable 11n functionality");
>
257c261,264
< ht_info->ht_supported = true;
---
> if (ath9k_modparam_disable_11n)
> ht_info->ht_supported = false;
> else
> ht_info->ht_supported = true;
Code: Select all
echo "options ath9k 11n_disable" >> /etc/modprobe.d/backports.conf