All of lore.kernel.org
 help / color / mirror / Atom feed
From: Joe M <joe9mail@gmail.com>
To: ath9k-devel@lists.ath9k.org
Subject: [ath9k-devel] Lost wireless connection every 6th minute
Date: Sat, 31 May 2014 15:39:43 -0500	[thread overview]
Message-ID: <20140531203943.GA22715@master> (raw)

Hello,

I am trying to figure out why my wireless card (wlan0 - TP-LINK
TL-WDN4800) is losing connection with the internet gateway (router:
TL-WR841N) every 6 minutes.

I do not see anything in the wpa_supplicant logs when the disconnect
happens. I am running wpa_supplicant with -d. I also did not see
anything specific with ath9k debugging enabled. I tried all the
different debugging values.

I do not see anything in the router (TL-WR841N) logs when this event
happens either.

I have 2 wireless cards in the system (wlan0 and wlanusb). I am not
using the wlanusb (rtl8188eu driver). Both cards have the same
disconnecting issue. I read that the ath9k driver is built for linux
and figure it would be easier to debug.

Any thoughts on how to debug this, please?

Attached:
1. script for generating wireless-info.txt: gather-wireless-info.sh
2. output of the test-network-connection.sh: ping-wlan0.log
3. script used for periodic pings: test-network-connection.sh
4. wireless-info.txt
5. wpa_supplicant.conf
6. wpa_supplicant output with -d: wpa_supplicant.output.txt

Thanks
Joe
-------------- next part --------------
#!/bin/bash
#
# Copyright (c) 2012
#
# Authors: Wild Man, Krytarik
# Helpers: chili555
#
# This script gathers the infos necessary for troubleshooting a wireless
# connection and saves them in a text file, wrapping it in an archive if it
# exceeds the size limit of 19.5 kB for .txt files on the Ubuntu Forums.
#
############################################################################
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
#

FILEBASE="wireless-info"
MODMATCHES="(air|ar5|ath|carl|at7|iwl|ipw|rt(2|3|5|6|7)|rtl|r(818|871)|8192(cu|du)|ssb|wl|b43|bcma|brcm|eth1|ndis|wlan0|firm|etork)[^[:punct:] ]*"

exec 3>&1 4>&2
exec 1> $FILEBASE.txt 2> /dev/null
if [ "$?" != "0" ]; then
    printf "\nCannot write output file, aborting.\n\n"
    exit 1
fi

printf "\n########## wireless info START ##########\n"

printf "\n##### release #####\n\n"
lsb_release -idrc

printf "\n##### kernel #####\n\n"
uname -a

printf "\n##### lshw #####\n\n"
lshw -class network 

printf "\n##### lsusb #####\n\n"
lsusb

printf "\n##### PCMCIA Card Info #####\n\n"
pccardctl info

printf "\n##### rfkill #####\n\n"
rfkill list all

printf "\n##### iw reg get #####\n\n"
iw reg get

printf "\n##### interfaces : ip link list #####\n\n"
#sed 's/wpa-psk [[:graph:]]\+/wpa-psk <WPA key removed>/' /etc/network/interfaces
sudo ip link list

printf "\n##### interfaces : ip addr list #####\n\n"
sudo ip addr list

printf "\n##### iw dev wlan0 link #####\n\n"
s iw dev wlan0 link

printf "\n##### iwconfig #####\n\n"
iwconfig

printf "\n##### route #####\n\n"
route -n

printf "\n##### resolv.conf #####\n\n"
grep -v '^#' /etc/resolv.conf

printf "\n##### nm-tool #####\n"
nm-tool

printf "\n##### NetworkManager.state #####\n\n"
cat -s /var/lib/NetworkManager/NetworkManager.state

printf "\n##### NetworkManager.conf #####\n\n"
grep -v '^#' /etc/NetworkManager/NetworkManager.conf
if [ -f /etc/NetworkManager/nm-system-settings.conf ]; then
    printf "nm-system-settings.conf (used up to 10.04):\n"
    grep -v '^#' /etc/NetworkManager/nm-system-settings.conf
fi

printf "\n##### iw dev wlan0 scan #####\n\n"
if [ -t 0 ]; then
    sudo iw dev wlan0 scan || echo "Aquiring of root rights failed."
elif [ -x /usr/bin/gksudo ]; then
    gksudo iwlist scan || echo "Aquiring of root rights failed."
elif [ -x /usr/bin/kdesudo ]; then
    kdesudo iwlist scan || echo "Aquiring of root rights failed."
else
    echo "No way to aquire root rights found."
fi

printf "\n##### iwlist #####\n\n"
if [ -t 0 ]; then
    sudo iwlist scan || echo "Aquiring of root rights failed."
elif [ -x /usr/bin/gksudo ]; then
    gksudo iwlist scan || echo "Aquiring of root rights failed."
elif [ -x /usr/bin/kdesudo ]; then
    kdesudo iwlist scan || echo "Aquiring of root rights failed."
else
    echo "No way to aquire root rights found."
fi

printf "\n##### iwlist channel #####\n\n"
iwlist chan

printf "\n##### lsmod #####\n\n"
lsmod | egrep "(^|[[:punct:] ])${MODMATCHES}([[:punct:] ]|$)"

printf "\n##### modinfo #####\n\n"
MODULNAMES=$(lsmod | egrep "^$MODMATCHES" | awk '{print $1}')
for MODULE in $MODULNAMES; do
    modinfo $MODULE
    echo
done

printf "\n##### modules #####\n\n"
grep -v '^#' /etc/modules

printf "\n##### blacklist #####\n"
for CONFFILE in /etc/modprobe.d/*.conf; do
    if [[ -n $(egrep -v '/etc/modprobe.d/(alsa-base|blacklist-(firewire|framebuffer|modem|oss|watchdog)|fglrx|nvidia)' <<< $CONFFILE) ]]; then
	BLACKLIST=$(grep '^blacklist' $CONFFILE)
	if [ -n "$BLACKLIST" ]; then
	    printf "\n[%s]\n%s\n" $CONFFILE "$BLACKLIST"
	fi
    fi
done

printf "\n##### udev rules #####\n"
egrep '^(#.*device|[^#]|$)' /etc/udev/rules.d/70-persistent-net.rules

printf "\n##### dmesg #####\n\n"
dmesg | egrep "[[:punct:] ]${MODMATCHES}[[:punct:] ]"

printf "\n########## wireless info END ############\n\n"

exec 1>&3 3>&-
exec 2>&4 4>&-

RESULTS=$(cat -s $FILEBASE.txt)
sed 's/\([[:alnum:]][[:alnum:]]:\)\{5\}[[:alnum:]][[:alnum:]]/<MAC address removed>/' <<< "$RESULTS" > $FILEBASE.txt

if [ $(stat -c %s $FILEBASE.txt) -gt 19968 ]; then
    tar -czf $FILEBASE.tar.gz $FILEBASE.txt
    rm $FILEBASE.txt
    printf "\nResults archived in \"%s.tar.gz\", as they exceed the 19.5 kB size limit for .txt files on the Ubuntu Forums.\n\n" "$FILEBASE"
else
    printf "\nResults saved in \"%s.txt\".\n\n" "$FILEBASE"
fi
-------------- next part --------------
-------------------------------------------------------
=== Sat May 31 14:34:01 CDT -- Sat May 31 19:34:01 GMT -- Sun Jun 01 01:04:01 IST ===
PING www.google.com (74.125.236.48) from 192.168.0.104 wlan0: 56(84) bytes of data.

--- www.google.com ping statistics ---
1 packets transmitted, 0 received, 100% packet loss, time 0ms

Sun Jun  1 01:04:11 IST 2014: CANNOT ping www.google.com
PING 192.168.0.1 (192.168.0.1) from 192.168.0.104 wlan0: 56(84) bytes of data.
64 bytes from 192.168.0.1: icmp_seq=1 ttl=64 time=4.64 ms

--- 192.168.0.1 ping statistics ---
1 packets transmitted, 1 received, 0% packet loss, time 0ms
rtt min/avg/max/mdev = 4.645/4.645/4.645/0.000 ms
-------------------------------------------------------
=== Sat May 31 14:36:01 CDT -- Sat May 31 19:36:01 GMT -- Sun Jun 01 01:06:01 IST ===
PING www.google.com (74.125.236.49) from 192.168.0.104 wlan0: 56(84) bytes of data.
64 bytes from maa03s04-in-f17.1e100.net (74.125.236.49): icmp_seq=1 ttl=56 time=117 ms

--- www.google.com ping statistics ---
1 packets transmitted, 1 received, 0% packet loss, time 0ms
rtt min/avg/max/mdev = 117.263/117.263/117.263/0.000 ms
-------------------------------------------------------
=== Sat May 31 14:38:01 CDT -- Sat May 31 19:38:01 GMT -- Sun Jun 01 01:08:01 IST ===
PING www.google.com (74.125.236.52) from 192.168.0.104 wlan0: 56(84) bytes of data.

--- www.google.com ping statistics ---
1 packets transmitted, 0 received, 100% packet loss, time 0ms

Sun Jun  1 01:08:11 IST 2014: CANNOT ping www.google.com
PING 192.168.0.1 (192.168.0.1) from 192.168.0.104 wlan0: 56(84) bytes of data.

--- 192.168.0.1 ping statistics ---
1 packets transmitted, 0 received, 100% packet loss, time 0ms

Sun Jun  1 01:08:21 IST 2014: CANNOT ping internet modem at 192.168.0.1
Power save: off
Selected interface 'wlan0'
bssid=<MAC address removed>
ssid=<ssid removed>
id=0
mode=station
pairwise_cipher=CCMP
group_cipher=CCMP
key_mgmt=WPA2-PSK
wpa_state=COMPLETED
ip_address=192.168.0.104
address=<MAC address removed>
default via 192.168.0.1 dev eth0  metric 202 
default via 192.168.0.1 dev wlan0  metric 204 
127.0.0.0/8 dev lo  scope host 
192.168.0.0/24 dev eth0  proto kernel  scope link  src 192.168.0.103  metric 202 
192.168.0.0/24 dev wlan0  proto kernel  scope link  src 192.168.0.104  metric 204 
-------------------------------------------------------
=== Sat May 31 14:40:01 CDT -- Sat May 31 19:40:01 GMT -- Sun Jun 01 01:10:01 IST ===
PING www.google.com (74.125.236.52) from 192.168.0.104 wlan0: 56(84) bytes of data.
64 bytes from maa03s04-in-f20.1e100.net (74.125.236.52): icmp_seq=1 ttl=56 time=109 ms

--- www.google.com ping statistics ---
1 packets transmitted, 1 received, 0% packet loss, time 0ms
rtt min/avg/max/mdev = 109.989/109.989/109.989/0.000 ms
-------------------------------------------------------
=== Sat May 31 14:42:01 CDT -- Sat May 31 19:42:01 GMT -- Sun Jun 01 01:12:01 IST ===
PING www.google.com (74.125.236.51) from 192.168.0.104 wlan0: 56(84) bytes of data.
64 bytes from maa03s04-in-f19.1e100.net (74.125.236.51): icmp_seq=1 ttl=56 time=98.8 ms

--- www.google.com ping statistics ---
1 packets transmitted, 1 received, 0% packet loss, time 0ms
rtt min/avg/max/mdev = 98.828/98.828/98.828/0.000 ms
-------------------------------------------------------
=== Sat May 31 14:44:02 CDT -- Sat May 31 19:44:02 GMT -- Sun Jun 01 01:14:02 IST ===
PING www.google.com (74.125.236.49) from 192.168.0.104 wlan0: 56(84) bytes of data.

--- www.google.com ping statistics ---
1 packets transmitted, 0 received, 100% packet loss, time 0ms

Sun Jun  1 01:14:12 IST 2014: CANNOT ping www.google.com
PING 192.168.0.1 (192.168.0.1) from 192.168.0.104 wlan0: 56(84) bytes of data.

--- 192.168.0.1 ping statistics ---
1 packets transmitted, 0 received, 100% packet loss, time 0ms

Sun Jun  1 01:14:22 IST 2014: CANNOT ping internet modem at 192.168.0.1
Power save: off
Selected interface 'wlan0'
bssid=<MAC address removed>
ssid=<ssid removed>
id=0
mode=station
pairwise_cipher=CCMP
group_cipher=CCMP
key_mgmt=WPA2-PSK
wpa_state=COMPLETED
ip_address=192.168.0.104
address=<MAC address removed>
default via 192.168.0.1 dev eth0  metric 202 
default via 192.168.0.1 dev wlan0  metric 204 
127.0.0.0/8 dev lo  scope host 
192.168.0.0/24 dev eth0  proto kernel  scope link  src 192.168.0.103  metric 202 
192.168.0.0/24 dev wlan0  proto kernel  scope link  src 192.168.0.104  metric 204 
-------------------------------------------------------
=== Sat May 31 14:46:01 CDT -- Sat May 31 19:46:01 GMT -- Sun Jun 01 01:16:01 IST ===
PING www.google.com (74.125.236.52) from 192.168.0.104 wlan0: 56(84) bytes of data.
64 bytes from maa03s04-in-f20.1e100.net (74.125.236.52): icmp_seq=1 ttl=56 time=81.0 ms

--- www.google.com ping statistics ---
1 packets transmitted, 1 received, 0% packet loss, time 0ms
rtt min/avg/max/mdev = 81.050/81.050/81.050/0.000 ms
-------------------------------------------------------
=== Sat May 31 14:48:01 CDT -- Sat May 31 19:48:01 GMT -- Sun Jun 01 01:18:01 IST ===
PING www.google.com (74.125.236.48) from 192.168.0.104 wlan0: 56(84) bytes of data.
64 bytes from maa03s04-in-f16.1e100.net (74.125.236.48): icmp_seq=1 ttl=56 time=72.8 ms

--- www.google.com ping statistics ---
1 packets transmitted, 1 received, 0% packet loss, time 0ms
rtt min/avg/max/mdev = 72.802/72.802/72.802/0.000 ms
-------------------------------------------------------
=== Sat May 31 14:50:01 CDT -- Sat May 31 19:50:01 GMT -- Sun Jun 01 01:20:01 IST ===
PING www.google.com (74.125.236.49) from 192.168.0.104 wlan0: 56(84) bytes of data.

--- www.google.com ping statistics ---
1 packets transmitted, 0 received, 100% packet loss, time 0ms

Sun Jun  1 01:20:11 IST 2014: CANNOT ping www.google.com
PING 192.168.0.1 (192.168.0.1) from 192.168.0.104 wlan0: 56(84) bytes of data.

--- 192.168.0.1 ping statistics ---
1 packets transmitted, 0 received, 100% packet loss, time 0ms

Sun Jun  1 01:20:21 IST 2014: CANNOT ping internet modem at 192.168.0.1
Power save: off
Selected interface 'wlan0'
bssid=<MAC address removed>
ssid=<ssid removed>
id=0
mode=station
pairwise_cipher=CCMP
group_cipher=CCMP
key_mgmt=WPA2-PSK
wpa_state=COMPLETED
ip_address=192.168.0.104
address=<MAC address removed>
default via 192.168.0.1 dev eth0  metric 202 
default via 192.168.0.1 dev wlan0  metric 204 
127.0.0.0/8 dev lo  scope host 
192.168.0.0/24 dev eth0  proto kernel  scope link  src 192.168.0.103  metric 202 
192.168.0.0/24 dev wlan0  proto kernel  scope link  src 192.168.0.104  metric 204 
-------------------------------------------------------
=== Sat May 31 14:52:01 CDT -- Sat May 31 19:52:01 GMT -- Sun Jun 01 01:22:01 IST ===
PING www.google.com (74.125.236.51) from 192.168.0.104 wlan0: 56(84) bytes of data.
64 bytes from maa03s04-in-f19.1e100.net (74.125.236.51): icmp_seq=1 ttl=56 time=54.4 ms

--- www.google.com ping statistics ---
1 packets transmitted, 1 received, 0% packet loss, time 0ms
rtt min/avg/max/mdev = 54.443/54.443/54.443/0.000 ms
-------------------------------------------------------
=== Sat May 31 14:54:01 CDT -- Sat May 31 19:54:01 GMT -- Sun Jun 01 01:24:01 IST ===
PING www.google.com (74.125.236.50) from 192.168.0.104 wlan0: 56(84) bytes of data.
64 bytes from maa03s04-in-f18.1e100.net (74.125.236.50): icmp_seq=1 ttl=56 time=46.2 ms

--- www.google.com ping statistics ---
1 packets transmitted, 1 received, 0% packet loss, time 0ms
rtt min/avg/max/mdev = 46.224/46.224/46.224/0.000 ms
-------------------------------------------------------
=== Sat May 31 14:56:01 CDT -- Sat May 31 19:56:01 GMT -- Sun Jun 01 01:26:01 IST ===
PING www.google.com (74.125.236.48) from 192.168.0.104 wlan0: 56(84) bytes of data.

--- www.google.com ping statistics ---
1 packets transmitted, 0 received, 100% packet loss, time 0ms

Sun Jun  1 01:26:11 IST 2014: CANNOT ping www.google.com
PING 192.168.0.1 (192.168.0.1) from 192.168.0.104 wlan0: 56(84) bytes of data.

--- 192.168.0.1 ping statistics ---
1 packets transmitted, 0 received, 100% packet loss, time 0ms

Sun Jun  1 01:26:21 IST 2014: CANNOT ping internet modem at 192.168.0.1
Power save: off
Selected interface 'wlan0'
bssid=<MAC address removed>
ssid=<ssid removed>
id=0
mode=station
pairwise_cipher=CCMP
group_cipher=CCMP
key_mgmt=WPA2-PSK
wpa_state=COMPLETED
ip_address=192.168.0.104
address=<MAC address removed>
default via 192.168.0.1 dev eth0  metric 202 
default via 192.168.0.1 dev wlan0  metric 204 
127.0.0.0/8 dev lo  scope host 
192.168.0.0/24 dev eth0  proto kernel  scope link  src 192.168.0.103  metric 202 
192.168.0.0/24 dev wlan0  proto kernel  scope link  src 192.168.0.104  metric 204 
-------------------------------------------------------
=== Sat May 31 14:58:01 CDT -- Sat May 31 19:58:01 GMT -- Sun Jun 01 01:28:01 IST ===
PING www.google.com (74.125.236.51) from 192.168.0.104 wlan0: 56(84) bytes of data.
64 bytes from maa03s04-in-f19.1e100.net (74.125.236.51): icmp_seq=1 ttl=56 time=32.8 ms

--- www.google.com ping statistics ---
1 packets transmitted, 1 received, 0% packet loss, time 0ms
rtt min/avg/max/mdev = 32.839/32.839/32.839/0.000 ms
-------------------------------------------------------
=== Sat May 31 15:00:01 CDT -- Sat May 31 20:00:01 GMT -- Sun Jun 01 01:30:01 IST ===
PING www.google.com (74.125.236.50) from 192.168.0.104 wlan0: 56(84) bytes of data.
64 bytes from maa03s04-in-f18.1e100.net (74.125.236.50): icmp_seq=1 ttl=56 time=30.1 ms

--- www.google.com ping statistics ---
1 packets transmitted, 1 received, 0% packet loss, time 0ms
rtt min/avg/max/mdev = 30.151/30.151/30.151/0.000 ms
-------------------------------------------------------
=== Sat May 31 15:02:01 CDT -- Sat May 31 20:02:01 GMT -- Sun Jun 01 01:32:01 IST ===
PING www.google.com (74.125.236.48) from 192.168.0.104 wlan0: 56(84) bytes of data.

--- www.google.com ping statistics ---
1 packets transmitted, 0 received, 100% packet loss, time 0ms

Sun Jun  1 01:32:11 IST 2014: CANNOT ping www.google.com
PING 192.168.0.1 (192.168.0.1) from 192.168.0.104 wlan0: 56(84) bytes of data.

--- 192.168.0.1 ping statistics ---
1 packets transmitted, 0 received, 100% packet loss, time 0ms

Sun Jun  1 01:32:21 IST 2014: CANNOT ping internet modem at 192.168.0.1
Power save: off
Selected interface 'wlan0'
bssid=<MAC address removed>
ssid=<ssid removed>
id=0
mode=station
pairwise_cipher=CCMP
group_cipher=CCMP
key_mgmt=WPA2-PSK
wpa_state=COMPLETED
ip_address=192.168.0.104
address=<MAC address removed>
default via 192.168.0.1 dev eth0  metric 202 
default via 192.168.0.1 dev wlan0  metric 204 
127.0.0.0/8 dev lo  scope host 
192.168.0.0/24 dev eth0  proto kernel  scope link  src 192.168.0.103  metric 202 
192.168.0.0/24 dev wlan0  proto kernel  scope link  src 192.168.0.104  metric 204 
-------------------------------------------------------
=== Sat May 31 15:04:01 CDT -- Sat May 31 20:04:01 GMT -- Sun Jun 01 01:34:01 IST ===
PING www.google.com (74.125.236.48) from 192.168.0.104 wlan0: 56(84) bytes of data.
64 bytes from maa03s04-in-f16.1e100.net (74.125.236.48): icmp_seq=1 ttl=56 time=32.5 ms

--- www.google.com ping statistics ---
1 packets transmitted, 1 received, 0% packet loss, time 0ms
rtt min/avg/max/mdev = 32.530/32.530/32.530/0.000 ms
-------------------------------------------------------
=== Sat May 31 15:06:01 CDT -- Sat May 31 20:06:01 GMT -- Sun Jun 01 01:36:01 IST ===
PING www.google.com (74.125.236.52) from 192.168.0.104 wlan0: 56(84) bytes of data.
64 bytes from maa03s04-in-f20.1e100.net (74.125.236.52): icmp_seq=1 ttl=56 time=30.1 ms

--- www.google.com ping statistics ---
1 packets transmitted, 1 received, 0% packet loss, time 0ms
rtt min/avg/max/mdev = 30.164/30.164/30.164/0.000 ms
-------------------------------------------------------
=== Sat May 31 15:08:01 CDT -- Sat May 31 20:08:01 GMT -- Sun Jun 01 01:38:01 IST ===
PING www.google.com (74.125.236.49) from 192.168.0.104 wlan0: 56(84) bytes of data.

--- www.google.com ping statistics ---
1 packets transmitted, 0 received, 100% packet loss, time 0ms

Sun Jun  1 01:38:11 IST 2014: CANNOT ping www.google.com
PING 192.168.0.1 (192.168.0.1) from 192.168.0.104 wlan0: 56(84) bytes of data.

--- 192.168.0.1 ping statistics ---
1 packets transmitted, 0 received, 100% packet loss, time 0ms

Sun Jun  1 01:38:21 IST 2014: CANNOT ping internet modem at 192.168.0.1
Power save: off
Selected interface 'wlan0'
bssid=<MAC address removed>
ssid=<ssid removed>
id=0
mode=station
pairwise_cipher=CCMP
group_cipher=CCMP
key_mgmt=WPA2-PSK
wpa_state=COMPLETED
ip_address=192.168.0.104
address=<MAC address removed>
default via 192.168.0.1 dev eth0  metric 202 
default via 192.168.0.1 dev wlan0  metric 204 
127.0.0.0/8 dev lo  scope host 
192.168.0.0/24 dev eth0  proto kernel  scope link  src 192.168.0.103  metric 202 
192.168.0.0/24 dev wlan0  proto kernel  scope link  src 192.168.0.104  metric 204 
-------------------------------------------------------
=== Sat May 31 15:10:01 CDT -- Sat May 31 20:10:01 GMT -- Sun Jun 01 01:40:01 IST ===
PING www.google.com (74.125.236.50) from 192.168.0.104 wlan0: 56(84) bytes of data.
64 bytes from maa03s04-in-f18.1e100.net (74.125.236.50): icmp_seq=1 ttl=56 time=33.9 ms

--- www.google.com ping statistics ---
1 packets transmitted, 1 received, 0% packet loss, time 0ms
rtt min/avg/max/mdev = 33.924/33.924/33.924/0.000 ms
-------------------------------------------------------
=== Sat May 31 15:12:01 CDT -- Sat May 31 20:12:01 GMT -- Sun Jun 01 01:42:01 IST ===
PING www.google.com (74.125.236.50) from 192.168.0.104 wlan0: 56(84) bytes of data.
64 bytes from maa03s04-in-f18.1e100.net (74.125.236.50): icmp_seq=1 ttl=56 time=30.0 ms

--- www.google.com ping statistics ---
1 packets transmitted, 1 received, 0% packet loss, time 0ms
rtt min/avg/max/mdev = 30.072/30.072/30.072/0.000 ms
-------------------------------------------------------
=== Sat May 31 15:14:01 CDT -- Sat May 31 20:14:01 GMT -- Sun Jun 01 01:44:01 IST ===
PING www.google.com (74.125.236.49) from 192.168.0.104 wlan0: 56(84) bytes of data.

--- www.google.com ping statistics ---
1 packets transmitted, 0 received, 100% packet loss, time 0ms

Sun Jun  1 01:44:11 IST 2014: CANNOT ping www.google.com
PING 192.168.0.1 (192.168.0.1) from 192.168.0.104 wlan0: 56(84) bytes of data.

--- 192.168.0.1 ping statistics ---
1 packets transmitted, 0 received, 100% packet loss, time 0ms

Sun Jun  1 01:44:21 IST 2014: CANNOT ping internet modem at 192.168.0.1
Power save: off
Selected interface 'wlan0'
bssid=<MAC address removed>
ssid=<ssid removed>
id=0
mode=station
pairwise_cipher=CCMP
group_cipher=CCMP
key_mgmt=WPA2-PSK
wpa_state=COMPLETED
ip_address=192.168.0.104
address=<MAC address removed>
default via 192.168.0.1 dev eth0  metric 202 
default via 192.168.0.1 dev wlan0  metric 204 
127.0.0.0/8 dev lo  scope host 
192.168.0.0/24 dev eth0  proto kernel  scope link  src 192.168.0.103  metric 202 
192.168.0.0/24 dev wlan0  proto kernel  scope link  src 192.168.0.104  metric 204 
-------------------------------------------------------
=== Sat May 31 15:16:01 CDT -- Sat May 31 20:16:01 GMT -- Sun Jun 01 01:46:01 IST ===
PING www.google.com (74.125.236.48) from 192.168.0.104 wlan0: 56(84) bytes of data.
64 bytes from maa03s04-in-f16.1e100.net (74.125.236.48): icmp_seq=1 ttl=56 time=32.9 ms

--- www.google.com ping statistics ---
1 packets transmitted, 1 received, 0% packet loss, time 0ms
rtt min/avg/max/mdev = 32.985/32.985/32.985/0.000 ms
-------------------------------------------------------
=== Sat May 31 15:18:01 CDT -- Sat May 31 20:18:01 GMT -- Sun Jun 01 01:48:01 IST ===
PING www.google.com (74.125.236.50) from 192.168.0.104 wlan0: 56(84) bytes of data.
64 bytes from maa03s04-in-f18.1e100.net (74.125.236.50): icmp_seq=1 ttl=56 time=30.6 ms

--- www.google.com ping statistics ---
1 packets transmitted, 1 received, 0% packet loss, time 0ms
rtt min/avg/max/mdev = 30.611/30.611/30.611/0.000 ms
-------------------------------------------------------
=== Sat May 31 15:20:01 CDT -- Sat May 31 20:20:01 GMT -- Sun Jun 01 01:50:01 IST ===
PING www.google.com (74.125.236.50) from 192.168.0.104 wlan0: 56(84) bytes of data.

--- www.google.com ping statistics ---
1 packets transmitted, 0 received, 100% packet loss, time 0ms

Sun Jun  1 01:50:11 IST 2014: CANNOT ping www.google.com
PING 192.168.0.1 (192.168.0.1) from 192.168.0.104 wlan0: 56(84) bytes of data.

--- 192.168.0.1 ping statistics ---
1 packets transmitted, 0 received, 100% packet loss, time 0ms

Sun Jun  1 01:50:21 IST 2014: CANNOT ping internet modem at 192.168.0.1
Power save: off
Selected interface 'wlan0'
bssid=<MAC address removed>
ssid=<ssid removed>
id=0
mode=station
pairwise_cipher=CCMP
group_cipher=CCMP
key_mgmt=WPA2-PSK
wpa_state=COMPLETED
ip_address=192.168.0.104
address=<MAC address removed>
default via 192.168.0.1 dev eth0  metric 202 
default via 192.168.0.1 dev wlan0  metric 204 
127.0.0.0/8 dev lo  scope host 
192.168.0.0/24 dev eth0  proto kernel  scope link  src 192.168.0.103  metric 202 
192.168.0.0/24 dev wlan0  proto kernel  scope link  src 192.168.0.104  metric 204 
-------------- next part --------------
#!/bin/sh

echo "-------------------------------------------------------"
echo $(TZ=America/Chicago date +"=== %a %b %d %T %Z --" && TZ=Greenwich date +"%a %b %d %T %Z -- " && TZ=Asia/Calcutta date +"%a %b %d %T %Z ===")
#set -o verbose
#set -o xtrace
ping -I "$1" -c 1 www.google.com && exit 0 \
    || ( echo "$(date): CANNOT ping www.google.com" \
                | sudo tee --append /dev/tty1 )

# 8.8.8.8 and 4.2.2.2 seem to be popular destination
#ping -I "$1" -c 1 8.8.8.8 && exit 0 \
#    || ( echo "$(date): CANNOT ping www.google.com" \
#                | sudo tee --append /dev/tty1 )

ping -I "$1" -c 1 192.168.0.1 && exit 0 \
    || ( echo "$(date): CANNOT ping internet modem at 192.168.0.1" \
                | sudo tee --append /dev/tty1 )

#set -o verbose
#set -o xtrace
iw dev wlan0 get power_save
wpa_cli status 
ip route list

exit 0
-------------- next part --------------

########## wireless info START ##########

##### release #####

##### kernel #####

Linux bnglr 3.15.0-rc7 #38 SMP Sat May 31 21:50:55 IST 2014 x86_64 AMD A10-5800K APU with Radeon(tm) HD Graphics AuthenticAMD GNU/Linux

##### lshw #####

  *-network
       description: Ethernet interface
       product: AR93xx Wireless Network Adapter
       vendor: Qualcomm Atheros
       physical id: 0
       bus info: pci at 0000:02:00.0
       logical name: wlan0
       version: 01
       serial: <MAC address removed>
       width: 64 bits
       clock: 33MHz
       capabilities: bus_master cap_list rom ethernet physical
       configuration: broadcast=yes driver=ath9k driverversion=3.15.0-rc7 firmware=N/A ip=192.168.0.104 latency=0 link=yes multicast=yes
       resources: irq:16 memory:fea00000-fea1ffff memory:fea20000-fea2ffff
  *-network
       description: Ethernet interface
       product: RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller
       vendor: Realtek Semiconductor Co., Ltd.
       physical id: 0
       bus info: pci at 0000:03:00.0
       logical name: eth0
       version: 09
       serial: <MAC address removed>
       size: 10Mbit/s
       capacity: 1Gbit/s
       width: 64 bits
       clock: 33MHz
       capabilities: bus_master cap_list ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd 1000bt 1000bt-fd autonegotiation
       configuration: autonegotiation=on broadcast=yes driver=r8169 driverversion=2.3LK-NAPI duplex=full firmware=rtl8168f-1_0.0.5 06/18/12 ip=192.168.0.103 latency=0 link=yes multicast=yes port=MII speed=10Mbit/s
       resources: irq:43 ioport:e000(size=256) memory:d0004000-d0004fff memory:d0000000-d0003fff
  *-network
       description: Wireless interface
       physical id: 1
       bus info: usb at 1:2
       logical name: wlanusb
       serial: <MAC address removed>
       capabilities: ethernet physical wireless
       configuration: broadcast=yes driver=r8188eu multicast=yes wireless=unassociated

##### lsusb #####

Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 001 Device 002: ID 2001:3310 D-Link Corp. 
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 006 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 005 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

##### PCMCIA Card Info #####

##### rfkill #####

0: phy0: Wireless LAN
	Soft blocked: no
	Hard blocked: no

##### iw reg get #####

country US: DFS-UNSET
	(2402 - 2472 @ 40), (3, 27)
	(5170 - 5250 @ 40), (3, 17)
	(5250 - 5330 @ 40), (3, 20), DFS
	(5490 - 5600 @ 40), (3, 20), DFS
	(5650 - 5710 @ 40), (3, 20), DFS
	(5735 - 5835 @ 40), (3, 30)
	(57240 - 63720 @ 2160), (N/A, 40)

##### interfaces : ip link list #####

1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT 
    link/loopback <MAC address removed> brd 00:00:00:00:00:00
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP mode DEFAULT qlen 1000
    link/ether <MAC address removed> brd ff:ff:ff:ff:ff:ff
3: wlanusb: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc mq state DOWN mode DEFAULT qlen 1000
    link/ether <MAC address removed> brd ff:ff:ff:ff:ff:ff
4: wlan0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP mode DORMANT qlen 1000
    link/ether <MAC address removed> brd ff:ff:ff:ff:ff:ff

##### interfaces : ip addr list #####

1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN 
    link/loopback <MAC address removed> brd 00:00:00:00:00:00
    inet 127.0.0.1/8 brd 127.255.255.255 scope host lo
       valid_lft forever preferred_lft forever
    inet6 ::1/128 scope host 
       valid_lft forever preferred_lft forever
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000
    link/ether <MAC address removed> brd ff:ff:ff:ff:ff:ff
    inet 192.168.0.103/24 brd 192.168.0.255 scope global eth0
       valid_lft forever preferred_lft forever
    inet6 <ipv6 address removed>/64 scope link 
       valid_lft forever preferred_lft forever
3: wlanusb: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc mq state DOWN qlen 1000
    link/ether <MAC address removed> brd ff:ff:ff:ff:ff:ff
4: wlan0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP qlen 1000
    link/ether <MAC address removed> brd ff:ff:ff:ff:ff:ff
    inet 192.168.0.104/24 brd 192.168.0.255 scope global wlan0
       valid_lft forever preferred_lft forever
    inet6 <ipv6 address removed>/64 scope link 
       valid_lft forever preferred_lft forever

##### iw dev wlan0 link #####
Connected to <removed Mac address> (on wlan0)
        SSID: <removed ssid>
        freq: 2442
        RX: 3379792 bytes (24881 packets)
        TX: 6713 bytes (147 packets)
        signal: -60 dBm
        tx bitrate: 1.0 MBit/s
        bss flags:      short-preamble short-slot-time
        dtim period:    0
        beacon int:     100

##### iwconfig #####

wlanusb   unassociated  Nickname:"<WIFI@REALTEK>"
          Mode:Auto  Frequency=2.412 GHz  Access Point: Not-Associated   
          Sensitivity:0/0  
          Retry:off   RTS thr:off   Fragment thr:off
          Power Management:off
          Link Quality:0  Signal level:0  Noise level:0
          Rx invalid nwid:0  Rx invalid crypt:0  Rx invalid frag:0
          Tx excessive retries:0  Invalid misc:0   Missed beacon:0

##### route #####

Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         192.168.0.1     0.0.0.0         UG    202    0        0 eth0
0.0.0.0         192.168.0.1     0.0.0.0         UG    204    0        0 wlan0
127.0.0.0       0.0.0.0         255.0.0.0       U     0      0        0 lo
192.168.0.0     0.0.0.0         255.255.255.0   U     202    0        0 eth0
192.168.0.0     0.0.0.0         255.255.255.0   U     204    0        0 wlan0

##### resolv.conf #####

nameserver 192.168.0.1
nameserver 208.67.222.222
nameserver 208.67.220.220
nameserver 8.8.8.8
nameserver 8.8.4.4
nameserver 68.105.28.12
nameserver 68.105.29.12
nameserver 75.75.75.75
nameserver 75.75.76.76

##### nm-tool #####

##### NetworkManager.state #####

##### NetworkManager.conf #####

##### iw dev wlan0 scan #####

BSS <MAC address removed>(on wlan0) -- associated
	TSF: 342256559298 usec (3d, 23:04:16)
	freq: 2442
	beacon interval: 100 TUs
	capability: ESS Privacy ShortPreamble ShortSlotTime (0x0431)
	signal: -61.00 dBm
	last seen: 80 ms ago
	Information elements from Probe Response frame:
	SSID: <removed ssid>
	Supported rates: 1.0* 2.0* 5.5* 11.0* 6.0 9.0 12.0 18.0 
	DS Parameter set: channel 7
	ERP: <no flags>
	RSN:	 * Version: 1
		 * Group cipher: CCMP
		 * Pairwise ciphers: CCMP
		 * Authentication suites: PSK
		 * Capabilities: (0x0000)
	Extended supported rates: 24.0 36.0 48.0 54.0 
	HT capabilities:
		Capabilities: 0x11ef
			RX LDPC
			HT20/HT40
			SM Power Save disabled
			RX HT20 SGI
			RX HT40 SGI
			TX STBC
			RX STBC 1-stream
			Max AMSDU length: 3839 bytes
			DSSS/CCK HT40
		Maximum RX AMPDU length 65535 bytes (exponent: 0x003)
		Minimum RX AMPDU time spacing: No restriction (0x00)
		HT RX MCS rate indexes supported: 0-15
		HT TX MCS rate indexes are undefined
	HT operation:
		 * primary channel: 7
		 * secondary channel offset: below
		 * STA channel width: any
		 * RIFS: 1
		 * HT protection: 20 MHz
		 * non-GF present: 1
		 * OBSS non-GF present: 0
		 * dual beacon: 0
		 * dual CTS protection: 0
		 * STBC beacon: 0
		 * L-SIG TXOP Prot: 0
		 * PCO active: 0
		 * PCO phase: 0
	WPA:	 * Version: 1
		 * Group cipher: CCMP
		 * Pairwise ciphers: CCMP
		 * Authentication suites: PSK
	WMM:	 * Parameter version 1
		 * u-APSD
		 * BE: CW 15-1023, AIFSN 3
		 * BK: CW 15-1023, AIFSN 7
		 * VI: CW 7-15, AIFSN 2, TXOP 3008 usec
		 * VO: CW 3-7, AIFSN 2, TXOP 1504 usec
	WPS:	 * Version: 1.0
		 * Wi-Fi Protected Setup State: 2 (Configured)
		 * Response Type: 3 (AP)
		 * UUID: 00010203-0405-0607-0809-0a0b0c0d0e0f
		 * Manufacturer: TP-LINK
		 * Model: TL-WR841N
		 * Model Number: 8.0
		 * Serial Number: 1.0
		 * Primary Device Type: 6-0050f204-1
		 * Device name: Wireless Router TL-WR841N
		 * Config methods: Ethernet, Label, PBC
		 * RF Bands: 0x1
		 * Unknown TLV (0x1049, 20 bytes): 00 24 e2 60 02 00 01 01 60 00 00 02 00 01 60 01 00 02 00 01

##### iwlist #####

wlanusb   Scan completed :
          Cell 01 - Address: <MAC address removed>
                    ESSID:"<removed ssid>"
                    Protocol:IEEE 802.11bgn
                    Mode:Master
                    Frequency:2.442 GHz (Channel 7)
                    Encryption key:on
                    Bit Rates:300 Mb/s
                    Extra:wpa_ie=dd160050f20101000050f20401000050f20401000050f202
                    IE: WPA Version 1
                        Group Cipher : CCMP
                        Pairwise Ciphers (1) : CCMP
                        Authentication Suites (1) : PSK
                    Extra:rsn_ie=30140100000fac040100000fac040100000fac020000
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : CCMP
                        Pairwise Ciphers (1) : CCMP
                        Authentication Suites (1) : PSK
                    IE: Unknown: DD990050F204104A0001101044000102103B00010310470010000102030405060708090A0B0C0D0E0F1021000754502D4C494E4B10230009544C2D57523834314E10240003382E3010420003312E301054000800060050F204000110110019576972656C65737320526F7574657220544C2D57523834314E100800020086103C000101104900140024E26002000101600000020001600100020001
                    Quality:0  Signal level:0  Noise level:0

##### iwlist channel #####

wlanusb   13 channels in total; available frequencies :
          Channel 01 : 2.412 GHz
          Channel 02 : 2.417 GHz
          Channel 03 : 2.422 GHz
          Channel 04 : 2.427 GHz
          Channel 05 : 2.432 GHz
          Channel 06 : 2.437 GHz
          Channel 07 : 2.442 GHz
          Channel 08 : 2.447 GHz
          Channel 09 : 2.452 GHz
          Channel 10 : 2.457 GHz
          Channel 11 : 2.462 GHz
          Channel 12 : 2.467 GHz
          Channel 13 : 2.472 GHz
          Current Frequency:2.412 GHz (Channel 1)

##### lsmod #####

ath9k                 142243  0 
ath9k_common            9118  1 ath9k
ath9k_hw              430567  2 ath9k_common,ath9k
mac80211              467858  1 ath9k
ath                    19023  3 ath9k_common,ath9k,ath9k_hw
cfg80211              379211  4 ath,ath9k_common,ath9k,mac80211
r8188eu               659862  0 

##### modinfo #####

filename:       /lib/modules/3.15.0-rc7/kernel/drivers/net/wireless/ath/ath9k/ath9k.ko
license:        Dual BSD/GPL
description:    Support for Atheros 802.11n wireless LAN cards.
author:         Atheros Communications
alias:          pci:v0000168Cd00000036sv*sd*bc*sc*i*
alias:          pci:v0000168Cd00000036sv00001028sd0000020Ebc*sc*i*
alias:          pci:v0000168Cd00000036sv00001043sd000085F2bc*sc*i*
alias:          pci:v0000168Cd00000036sv000017AAsd00004026bc*sc*i*
alias:          pci:v0000168Cd00000036sv000017AAsd00003026bc*sc*i*
alias:          pci:v0000168Cd00000036sv0000105Bsd0000E081bc*sc*i*
alias:          pci:v0000168Cd00000036sv0000105Bsd0000E07Fbc*sc*i*
alias:          pci:v0000168Cd00000036sv0000185Fsd0000A120bc*sc*i*
alias:          pci:v0000168Cd00000036sv0000185Fsd00003027bc*sc*i*
alias:          pci:v0000168Cd00000036sv00001B9Asd000028A2bc*sc*i*
alias:          pci:v0000168Cd00000036sv00001B9Asd00002810bc*sc*i*
alias:          pci:v0000168Cd00000036sv0000144Fsd00007202bc*sc*i*
alias:          pci:v0000168Cd00000036sv00001A3Bsd00002182bc*sc*i*
alias:          pci:v0000168Cd00000036sv00001A3Bsd0000213Bbc*sc*i*
alias:          pci:v0000168Cd00000036sv00001A3Bsd00002130bc*sc*i*
alias:          pci:v0000168Cd00000036sv000011ADsd00000692bc*sc*i*
alias:          pci:v0000168Cd00000036sv000011ADsd00000832bc*sc*i*
alias:          pci:v0000168Cd00000036sv000011ADsd00000612bc*sc*i*
alias:          pci:v0000168Cd00000036sv000011ADsd00000652bc*sc*i*
alias:          pci:v0000168Cd00000036sv000011ADsd00000642bc*sc*i*
alias:          pci:v0000168Cd00000036sv0000168Csd0000302Cbc*sc*i*
alias:          pci:v0000168Cd00000036sv0000168Csd00003027bc*sc*i*
alias:          pci:v0000168Cd00000036sv0000144Dsd0000411Ebc*sc*i*
alias:          pci:v0000168Cd00000036sv0000144Dsd0000411Dbc*sc*i*
alias:          pci:v0000168Cd00000036sv0000144Dsd0000411Cbc*sc*i*
alias:          pci:v0000168Cd00000036sv0000144Dsd0000411Bbc*sc*i*
alias:          pci:v0000168Cd00000036sv0000144Dsd0000411Abc*sc*i*
alias:          pci:v0000168Cd00000036sv00001028sd0000020Cbc*sc*i*
alias:          pci:v0000168Cd00000036sv0000103Csd00002005bc*sc*i*
alias:          pci:v0000168Cd00000036sv0000103Csd0000217Fbc*sc*i*
alias:          pci:v0000168Cd00000036sv0000103Csd000018E3bc*sc*i*
alias:          pci:v0000168Cd00000036sv00001A3Bsd0000213Abc*sc*i*
alias:          pci:v0000168Cd00000036sv000011ADsd00000682bc*sc*i*
alias:          pci:v0000168Cd00000036sv000011ADsd000006A2bc*sc*i*
alias:          pci:v0000168Cd00000036sv000011ADsd00000662bc*sc*i*
alias:          pci:v0000168Cd00000036sv000011ADsd00000672bc*sc*i*
alias:          pci:v0000168Cd00000036sv000011ADsd00000622bc*sc*i*
alias:          pci:v0000168Cd00000036sv0000185Fsd00003028bc*sc*i*
alias:          pci:v0000168Cd00000036sv0000105Bsd0000E069bc*sc*i*
alias:          pci:v0000168Cd00000036sv0000168Csd0000302Bbc*sc*i*
alias:          pci:v0000168Cd00000036sv0000168Csd00003026bc*sc*i*
alias:          pci:v0000168Cd00000036sv0000168Csd00003025bc*sc*i*
alias:          pci:v0000168Cd00000036sv00001A3Bsd0000218Abc*sc*i*
alias:          pci:v0000168Cd00000036sv00001B9Asd000028A1bc*sc*i*
alias:          pci:v0000168Cd00000036sv00001B9Asd00002812bc*sc*i*
alias:          pci:v0000168Cd00000036sv00001B9Asd00002811bc*sc*i*
alias:          pci:v0000168Cd00000036sv000011ADsd00006671bc*sc*i*
alias:          pci:v0000168Cd00000036sv000011ADsd00000842bc*sc*i*
alias:          pci:v0000168Cd00000036sv000011ADsd000006B2bc*sc*i*
alias:          pci:v0000168Cd00000036sv000011ADsd00000632bc*sc*i*
alias:          pci:v0000168Cd00000036sv0000185Fsd0000A119bc*sc*i*
alias:          pci:v0000168Cd00000036sv0000105Bsd0000E068bc*sc*i*
alias:          pci:v0000168Cd00000036sv00001A3Bsd00002176bc*sc*i*
alias:          pci:v0000168Cd00000036sv0000168Csd00003028bc*sc*i*
alias:          pci:v0000168Cd00000037sv*sd*bc*sc*i*
alias:          pci:v0000168Cd00000034sv*sd*bc*sc*i*
alias:          pci:v0000168Cd00000030sv00001A56sd00002003bc*sc*i*
alias:          pci:v0000168Cd00000034sv000010CFsd00001783bc*sc*i*
alias:          pci:v0000168Cd00000034sv000014CDsd00000064bc*sc*i*
alias:          pci:v0000168Cd00000034sv000014CDsd00000063bc*sc*i*
alias:          pci:v0000168Cd00000034sv0000103Csd00001864bc*sc*i*
alias:          pci:v0000168Cd00000034sv000011ADsd00006641bc*sc*i*
alias:          pci:v0000168Cd00000034sv000011ADsd00006631bc*sc*i*
alias:          pci:v0000168Cd00000034sv00001043sd0000850Ebc*sc*i*
alias:          pci:v0000168Cd00000034sv00001A3Bsd00002110bc*sc*i*
alias:          pci:v0000168Cd00000034sv00001969sd00000091bc*sc*i*
alias:          pci:v0000168Cd00000034sv000017AAsd00003214bc*sc*i*
alias:          pci:v0000168Cd00000034sv0000168Csd00003117bc*sc*i*
alias:          pci:v0000168Cd00000034sv000011ADsd00006661bc*sc*i*
alias:          pci:v0000168Cd00000034sv00001A3Bsd00002116bc*sc*i*
alias:          pci:v0000168Cd00000033sv*sd*bc*sc*i*
alias:          pci:v0000168Cd00000032sv*sd*bc*sc*i*
alias:          pci:v0000168Cd00000032sv00001043sd0000850Dbc*sc*i*
alias:          pci:v0000168Cd00000032sv00001B9Asd00001C01bc*sc*i*
alias:          pci:v0000168Cd00000032sv00001B9Asd00001C00bc*sc*i*
alias:          pci:v0000168Cd00000032sv00001A3Bsd00001F95bc*sc*i*
alias:          pci:v0000168Cd00000032sv00001A3Bsd00001195bc*sc*i*
alias:          pci:v0000168Cd00000032sv00001A3Bsd00001F86bc*sc*i*
alias:          pci:v0000168Cd00000032sv00001A3Bsd00001186bc*sc*i*
alias:          pci:v0000168Cd00000032sv00001B9Asd00002001bc*sc*i*
alias:          pci:v0000168Cd00000032sv00001B9Asd00002000bc*sc*i*
alias:          pci:v0000168Cd00000032sv0000144Fsd00007197bc*sc*i*
alias:          pci:v0000168Cd00000032sv0000105Bsd0000E04Fbc*sc*i*
alias:          pci:v0000168Cd00000032sv0000105Bsd0000E04Ebc*sc*i*
alias:          pci:v0000168Cd00000032sv000011ADsd00006628bc*sc*i*
alias:          pci:v0000168Cd00000032sv000011ADsd00006627bc*sc*i*
alias:          pci:v0000168Cd00000032sv00001C56sd00004001bc*sc*i*
alias:          pci:v0000168Cd00000032sv00001A3Bsd00002100bc*sc*i*
alias:          pci:v0000168Cd00000032sv00001A3Bsd00002C97bc*sc*i*
alias:          pci:v0000168Cd00000032sv000017AAsd00003219bc*sc*i*
alias:          pci:v0000168Cd00000032sv000017AAsd00003218bc*sc*i*
alias:          pci:v0000168Cd00000032sv0000144Dsd0000C708bc*sc*i*
alias:          pci:v0000168Cd00000032sv0000144Dsd0000C680bc*sc*i*
alias:          pci:v0000168Cd00000032sv0000144Dsd0000C706bc*sc*i*
alias:          pci:v0000168Cd00000032sv0000144Dsd0000410Fbc*sc*i*
alias:          pci:v0000168Cd00000032sv0000144Dsd0000410Ebc*sc*i*
alias:          pci:v0000168Cd00000032sv0000144Dsd0000410Dbc*sc*i*
alias:          pci:v0000168Cd00000032sv0000144Dsd00004106bc*sc*i*
alias:          pci:v0000168Cd00000032sv0000144Dsd00004105bc*sc*i*
alias:          pci:v0000168Cd00000032sv0000185Fsd00003027bc*sc*i*
alias:          pci:v0000168Cd00000032sv0000185Fsd00003119bc*sc*i*
alias:          pci:v0000168Cd00000032sv0000168Csd00003122bc*sc*i*
alias:          pci:v0000168Cd00000032sv0000168Csd00003119bc*sc*i*
alias:          pci:v0000168Cd00000032sv0000105Bsd0000E075bc*sc*i*
alias:          pci:v0000168Cd00000032sv00001A3Bsd00002152bc*sc*i*
alias:          pci:v0000168Cd00000032sv00001A3Bsd0000126Abc*sc*i*
alias:          pci:v0000168Cd00000032sv00001A3Bsd00002126bc*sc*i*
alias:          pci:v0000168Cd00000032sv00001A3Bsd00001237bc*sc*i*
alias:          pci:v0000168Cd00000032sv00001A3Bsd00002086bc*sc*i*
alias:          pci:v0000168Cd00000030sv*sd*bc*sc*i*
alias:          pci:v0000168Cd00000030sv00001A56sd00002001bc*sc*i*
alias:          pci:v0000168Cd00000030sv00001A56sd00002000bc*sc*i*
alias:          pci:v0000168Cd0000002Esv*sd*bc*sc*i*
alias:          pci:v0000168Cd0000002Dsv*sd*bc*sc*i*
alias:          pci:v0000168Cd0000002Csv*sd*bc*sc*i*
alias:          pci:v0000168Cd0000002Bsv*sd*bc*sc*i*
alias:          pci:v0000168Cd0000002Bsv00001A3Bsd00002C37bc*sc*i*
alias:          pci:v0000168Cd0000002Asv000010CFsd00001536bc*sc*i*
alias:          pci:v0000168Cd0000002Asv000010CFsd0000147Dbc*sc*i*
alias:          pci:v0000168Cd0000002Asv000010CFsd0000147Cbc*sc*i*
alias:          pci:v0000168Cd0000002Asv0000185Fsd0000309Dbc*sc*i*
alias:          pci:v0000168Cd0000002Asv00001A32sd00000306bc*sc*i*
alias:          pci:v0000168Cd0000002Asv000011ADsd00006642bc*sc*i*
alias:          pci:v0000168Cd0000002Asv000011ADsd00006632bc*sc*i*
alias:          pci:v0000168Cd0000002Asv0000105Bsd0000E01Fbc*sc*i*
alias:          pci:v0000168Cd0000002Asv00001A3Bsd00001C71bc*sc*i*
alias:          pci:v0000168Cd0000002Asv*sd*bc*sc*i*
alias:          pci:v0000168Cd00000029sv*sd*bc*sc*i*
alias:          pci:v0000168Cd00000027sv*sd*bc*sc*i*
alias:          pci:v0000168Cd00000024sv*sd*bc*sc*i*
alias:          pci:v0000168Cd00000023sv*sd*bc*sc*i*
alias:          platform:qca953x_wmac
alias:          platform:qca955x_wmac
alias:          platform:ar934x_wmac
alias:          platform:ar933x_wmac
alias:          platform:ath9k
depends:        ath9k_hw,mac80211,ath9k_common,cfg80211,ath
intree:         Y
vermagic:       3.15.0-rc7 SMP mod_unload 
parm:           debug:Debugging mask (uint)
parm:           nohwcrypt:Disable hardware encryption (int)
parm:           blink:Enable LED blink on activity (int)
parm:           btcoex_enable:Enable wifi-BT coexistence (int)
parm:           bt_ant_diversity:Enable WLAN/BT RX antenna diversity (int)
parm:           ps_enable:Enable WLAN PowerSave (int)

filename:       /lib/modules/3.15.0-rc7/kernel/drivers/net/wireless/ath/ath9k/ath9k_common.ko
license:        Dual BSD/GPL
description:    Shared library for Atheros wireless 802.11n LAN cards.
author:         Atheros Communications
depends:        cfg80211,ath,ath9k_hw
intree:         Y
vermagic:       3.15.0-rc7 SMP mod_unload 

filename:       /lib/modules/3.15.0-rc7/kernel/drivers/net/wireless/ath/ath9k/ath9k_hw.ko
license:        Dual BSD/GPL
description:    Support for Atheros 802.11n wireless LAN cards.
author:         Atheros Communications
depends:        ath
intree:         Y
vermagic:       3.15.0-rc7 SMP mod_unload 

filename:       /lib/modules/3.15.0-rc7/kernel/drivers/net/wireless/ath/ath.ko
license:        Dual BSD/GPL
description:    Shared library for Atheros wireless LAN cards.
author:         Atheros Communications
depends:        cfg80211
intree:         Y
vermagic:       3.15.0-rc7 SMP mod_unload 

filename:       /lib/modules/3.15.0-rc7/kernel/drivers/staging/rtl8188eu/r8188eu.ko
version:        v4.1.4_6773.20130222
author:         Realtek Semiconductor Corp.
description:    Realtek Wireless Lan Driver
license:        GPL
srcversion:     DA316F7F63F6BF08D6E421E
alias:          usb:v2001p3310d*dc*dsc*dp*ic*isc*ip*in*
alias:          usb:v2001p330Fd*dc*dsc*dp*ic*isc*ip*in*
alias:          usb:v07B8p8179d*dc*dsc*dp*ic*isc*ip*in*
alias:          usb:v0BDAp0179d*dc*dsc*dp*ic*isc*ip*in*
alias:          usb:v0BDAp8179d*dc*dsc*dp*ic*isc*ip*in*
depends:        
staging:        Y
intree:         Y
vermagic:       3.15.0-rc7 SMP mod_unload 
parm:           rtw_ips_mode:The default IPS mode (int)
parm:           ifname:The default name to allocate for first interface (charp)
parm:           if2name:The default name to allocate for second interface (charp)
parm:           rtw_initmac:charp
parm:           rtw_channel_plan:int
parm:           rtw_chip_version:int
parm:           rtw_rfintfs:int
parm:           rtw_lbkmode:int
parm:           rtw_network_mode:int
parm:           rtw_channel:int
parm:           rtw_mp_mode:int
parm:           rtw_wmm_enable:int
parm:           rtw_vrtl_carrier_sense:int
parm:           rtw_vcs_type:int
parm:           rtw_busy_thresh:int
parm:           rtw_ht_enable:int
parm:           rtw_cbw40_enable:int
parm:           rtw_ampdu_enable:int
parm:           rtw_rx_stbc:int
parm:           rtw_ampdu_amsdu:int
parm:           rtw_lowrate_two_xmit:int
parm:           rtw_rf_config:int
parm:           rtw_power_mgnt:int
parm:           rtw_smart_ps:int
parm:           rtw_low_power:int
parm:           rtw_wifi_spec:int
parm:           rtw_antdiv_cfg:int
parm:           rtw_antdiv_type:int
parm:           rtw_enusbss:int
parm:           rtw_hwpdn_mode:int
parm:           rtw_hwpwrp_detect:int
parm:           rtw_hw_wps_pbc:int
parm:           rtw_max_roaming_times:The max roaming times to try (uint)
parm:           rtw_fw_iol:FW IOL (int)
parm:           rtw_mc2u_disable:int
parm:           rtw_80211d:Enable 802.11d mechanism (int)
parm:           rtw_notch_filter:0:Disable, 1:Enable, 2:Enable only for P2P (uint)
parm:           debug:Set debug level (1-9) (default 1) (int)

##### modules #####

##### blacklist #####

##### udev rules #####

##### dmesg #####

[   19.086214] r8188eu: module is from the staging directory, the quality is unknown, you have been warned.
[   19.192690] systemd-udevd[302]: renamed network interface wlan0 to wlanusb
[   19.787280] ath: EEPROM regdomain: 0x21
[   19.787282] ath: EEPROM indicates we should expect a direct regpair map
[   19.787283] ath: Country alpha2 being used: AU
[   19.787284] ath: Regpair used: 0x21
[   39.371687] IPv6: ADDRCONF(NETDEV_UP): wlanusb: link is not ready
[   39.371706] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[ 1456.013674] wlan0: authenticate with <MAC address removed>
[ 1456.019842] wlan0: send auth to <MAC address removed> (try 1/3)
[ 1456.022305] wlan0: authenticated
[ 1456.023311] wlan0: associate with <MAC address removed> (try 1/3)
[ 1456.027726] wlan0: RX AssocResp from <MAC address removed> (capab=0x431 status=0 aid=2)
[ 1456.027764] wlan0: associated
[ 1456.027773] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready

########## wireless info END ############
-------------- next part --------------
ctrl_interface=DIR=/run/wpa_supplicant GROUP=wheel
update_config=1
#device_name=bnglr
#device_type=1-0050F204-2
# router has the country = US
#country=IN
country=US
ap_scan=1
eapol_version=1
fast_reauth=1
network={
        ssid=<ssid removed>
        psk=<psk removed>
   proto=WPA2
   dtim_period=1
   #skip_inactivity_poll=1
   ap_max_inactivity=60
   priority=5
}
-------------- next part --------------
wpa_supplicant v2.2-devel
random: Trying to read entropy from /dev/random
Successfully initialized wpa_supplicant
Initializing interface 'wlan0' conf '/etc/wpa_supplicant/wpa_supplicant.conf' driver 'default' ctrl_interface 'N/A' bridge 'N/A'
Configuration file '/etc/wpa_supplicant/wpa_supplicant.conf' -> '/etc/wpa_supplicant/wpa_supplicant.conf'
Reading configuration file '/etc/wpa_supplicant/wpa_supplicant.conf'
ctrl_interface='DIR=/run/wpa_supplicant GROUP=wheel'
update_config=1
country='US'
ap_scan=1
eapol_version=1
fast_reauth=1
Priority group 5
   id=0 ssid='<ssid removed>'
rfkill: initial event: idx=0 type=1 op=0 soft=0 hard=0
nl80211: TDLS supported
nl80211: TDLS external setup
nl80211: Supported cipher 00-0f-ac:1
nl80211: Supported cipher 00-0f-ac:5
nl80211: Supported cipher 00-0f-ac:2
nl80211: Supported cipher 00-0f-ac:4
nl80211: Supported cipher 00-0f-ac:6
nl80211: Using driver-based off-channel TX
nl80211: Use separate P2P group interface (driver advertised support)
nl80211: interface wlan0 in phy phy0
nl80211: Set mode ifindex 4 iftype 2 (STATION)
nl80211: Subscribe to mgmt frames with non-AP handle 0x1e3eb70
nl80211: Register frame type=0xd0 nl_handle=0x1e3eb70 match=06
nl80211: Register frame type=0xd0 nl_handle=0x1e3eb70 match=0a07
nl80211: Register frame type=0xd0 nl_handle=0x1e3eb70 match=0a11
netlink: Operstate: ifindex=4 linkmode=1 (userspace-control), operstate=5 (IF_OPER_DORMANT)
nl80211: driver param='(null)'
Add interface wlan0 to a new radio phy0
nl80211: Regulatory information - country=US
nl80211: 2402-2472 @ 40 MHz 27 mBm
nl80211: 5170-5250 @ 40 MHz 17 mBm
nl80211: 5250-5330 @ 40 MHz 20 mBm (DFS)
nl80211: 5490-5600 @ 40 MHz 20 mBm (DFS)
nl80211: 5650-5710 @ 40 MHz 20 mBm (DFS)
nl80211: 5735-5835 @ 40 MHz 30 mBm
nl80211: 57240-63720 @ 2160 MHz 40 mBm
nl80211: Added 802.11b mode based on 802.11g information
wlan0: Own MAC address: c0:4a:00:14:6c:a8
wpa_driver_nl80211_set_key: ifindex=4 (wlan0) alg=0 addr=(nil) key_idx=0 set_tx=0 seq_len=0 key_len=0
wpa_driver_nl80211_set_key: ifindex=4 (wlan0) alg=0 addr=(nil) key_idx=1 set_tx=0 seq_len=0 key_len=0
wpa_driver_nl80211_set_key: ifindex=4 (wlan0) alg=0 addr=(nil) key_idx=2 set_tx=0 seq_len=0 key_len=0
wpa_driver_nl80211_set_key: ifindex=4 (wlan0) alg=0 addr=(nil) key_idx=3 set_tx=0 seq_len=0 key_len=0
wlan0: RSN: flushing PMKID list in the driver
nl80211: Flush PMKIDs
wlan0: Setting scan request: 0.100000 sec
EAPOL: SUPP_PAE entering state DISCONNECTED
EAPOL: Supplicant port status: Unauthorized
nl80211: Skip set_supp_port(unauthorized) while not associated
EAPOL: KEY_RX entering state NO_KEY_RECEIVE
EAPOL: SUPP_BE entering state INITIALIZE
EAP: EAP entering state DISABLED
Using existing control interface directory.
ctrl_interface_group=10 (from group name 'wheel')
ctrl_iface bind(PF_UNIX) failed: Address already in use
ctrl_iface exists, but does not allow connections - assuming it was leftover from forced program termination
Successfully replaced leftover ctrl_iface socket '/run/wpa_supplicant/wlan0'
wlan0: Added interface wlan0
wlan0: State: DISCONNECTED -> DISCONNECTED
nl80211: Set wlan0 operstate 0->0 (DORMANT)
netlink: Operstate: ifindex=4 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
random: Got 20/20 bytes from /dev/random
wlan0: State: DISCONNECTED -> SCANNING
wlan0: Starting AP scan for wildcard SSID
wlan0: Add radio work 'scan'@0x1e5ec50
wlan0: First radio work item in the queue - schedule start immediately
wlan0: Starting radio work 'scan'@0x1e5ec50 after 0.000005 second wait
wlan0: nl80211: scan request
Scan requested (ret=0) - scan timeout 10 seconds
nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for wlan0
wlan0: nl80211: Scan trigger
wlan0: Event SCAN_STARTED (49) received
wlan0: Own scan request started a scan in 0.000017 seconds
wlan0: CTRL-EVENT-SCAN-STARTED 
EAPOL: disable timer tick
nl80211: Drv Event 34 (NL80211_CMD_NEW_SCAN_RESULTS) received for wlan0
wlan0: nl80211: New scan results available
nl80211: Scan probed for SSID ''
nl80211: Scan included frequencies: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 5180 5200 5220 5240 5260 5280 5300 5320 5745 5765 5785 5805 5825
wlan0: Event SCAN_RESULTS (3) received
wlan0: Scan completed in 1.632793 seconds
nl80211: Received scan results (1 BSSes)
wlan0: BSS: Start scan result update 1
wlan0: BSS: Add new id 0 BSSID <MAC address removed> SSID '<ssid removed>'
BSS: last_scan_res_used=1/32
wlan0: New scan results available (own=1 ext=0)
wlan0: Radio work 'scan'@0x1e5ec50 done in 1.639737 seconds
wlan0: Selecting BSS from priority group 5
wlan0: 0: <MAC address removed> ssid='<ssid removed>' wpa_ie_len=22 rsn_ie_len=20 caps=0x431 level=-60 wps
wlan0:    selected based on RSN IE
wlan0:    selected BSS <MAC address removed> ssid='<ssid removed>'
wlan0: Considering connect request: reassociate: 0  selected: <MAC address removed>  bssid: 00:00:00:00:00:00  pending: 00:00:00:00:00:00  wpa_state: SCANNING  ssid=0x1e3e530  current_ssid=(nil)
wlan0: Request association with <MAC address removed>
wlan0: Add radio work 'sme-connect'@0x1e3fcf0
wlan0: First radio work item in the queue - schedule start immediately
wlan0: Starting radio work 'sme-connect'@0x1e3fcf0 after 0.000013 second wait
wlan0: Automatic auth_alg selection: 0x1
RSN: PMKSA cache search - network_ctx=(nil) try_opportunistic=0
RSN: Search for BSSID <MAC address removed>
RSN: No PMKSA cache entry found
wlan0: RSN: using IEEE 802.11i/D9.0
wlan0: WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 2 proto 2
WPA: set AP WPA IE - hexdump(len=24): dd 16 00 50 f2 01 01 00 00 50 f2 04 01 00 00 50 f2 04 01 00 00 50 f2 02
WPA: set AP RSN IE - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
wlan0: WPA: using GTK CCMP
wlan0: WPA: using PTK CCMP
wlan0: WPA: using KEY_MGMT WPA-PSK
WPA: Set own WPA IE default - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
wlan0: Cancelling scan request
wlan0: SME: Trying to authenticate with <MAC address removed> (SSID='<ssid removed>' freq=2442 MHz)
wlan0: State: SCANNING -> AUTHENTICATING
EAPOL: External notification - EAP success=0
EAPOL: External notification - EAP fail=0
EAPOL: External notification - portControl=Auto
nl80211: Authenticate (ifindex=4)
  * bssid=<MAC address removed>
  * freq=2442
  * SSID - hexdump_ascii(len=16):
     <hex dump ascii>   <ssid removed>
  * IEs - hexdump(len=0): [NULL]
  * Auth Type 0
nl80211: Authentication request send successfully
nl80211: Drv Event 19 (NL80211_CMD_NEW_STATION) received for wlan0
nl80211: New station <MAC address removed>
nl80211: Drv Event 37 (NL80211_CMD_AUTHENTICATE) received for wlan0
nl80211: Authenticate event
wlan0: Event AUTH (11) received
wlan0: SME: Authentication response: peer=<MAC address removed> auth_type=0 auth_transaction=2 status_code=0
wlan0: Trying to associate with <MAC address removed> (SSID='<ssid removed>' freq=2442 MHz)
wlan0: State: AUTHENTICATING -> ASSOCIATING
nl80211: Set wlan0 operstate 0->0 (DORMANT)
netlink: Operstate: ifindex=4 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
WPA: set own WPA/RSN IE - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
nl80211: Associate (ifindex=4)
  * bssid=<MAC address removed>
  * freq=2442
  * SSID - hexdump_ascii(len=16):
     <hex dump ascii>   <ssid removed>
  * IEs - hexdump(len=32): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 7f 08 00 00 00 00 00 00 00 40
  * WPA Versions 0x2
  * pairwise=0xfac04
  * group=0xfac04
  * akm=0xfac02
nl80211: Association request send successfully
RTM_NEWLINK: ifi_index=4 ifname=wlan0 operstate=5 linkmode=1 ifi_flags=0x11003 ([UP][LOWER_UP])
nl80211: Drv Event 38 (NL80211_CMD_ASSOCIATE) received for wlan0
nl80211: Associate event
wlan0: Event ASSOC (0) received
wlan0: Association info event
resp_ies - hexdump(len=146): 01 08 02 04 0b 0c 12 16 18 24 32 04 30 48 60 6c 2d 1a ef 11 03 ff ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 04 06 e6 e7 0d 00 33 1a ef 11 03 ff ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 04 06 e6 e7 0d 00 3d 16 07 0f 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 34 16 07 0f 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 dd 18 00 50 f2 02 01 01 83 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00
wlan0: freq=2442 MHz
wlan0: State: ASSOCIATING -> ASSOCIATED
nl80211: Set wlan0 operstate 0->0 (DORMANT)
netlink: Operstate: ifindex=4 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
wlan0: Associated to a new BSS: BSSID=<MAC address removed>
wlan0: Associated with <MAC address removed>
wlan0: WPA: Association event - clear replay counter
wlan0: WPA: Clear old PTK
EAPOL: External notification - portEnabled=0
EAPOL: External notification - portValid=0
EAPOL: External notification - EAP success=0
EAPOL: External notification - portEnabled=1
EAPOL: SUPP_PAE entering state CONNECTING
EAPOL: enable timer tick
EAPOL: SUPP_BE entering state IDLE
wlan0: Setting authentication timeout: 10 sec 0 usec
wlan0: Cancelling scan request
nl80211: Drv Event 46 (NL80211_CMD_CONNECT) received for wlan0
nl80211: Ignore connect event (cmd=46) when using userspace SME
wlan0: RX EAPOL from <MAC address removed>
wlan0: Setting authentication timeout: 10 sec 0 usec
wlan0: IEEE 802.1X RX: version=2 type=3 length=95
wlan0:   EAPOL-Key type=2
wlan0:   key_info 0x8a (ver=2 keyidx=0 rsvd=0 Pairwise Ack)
wlan0:   key_length=16 key_data_length=0
  replay_counter - hexdump(len=8): 00 00 00 00 00 00 00 01
  key_nonce - hexdump(len=32): f2 db b5 a9 f2 ed 7e d3 f3 2b 65 e0 f9 65 4f 11 3c 84 99 e8 cd 4e 24 1e dd bd 4f 5b 2b 07 ab 49
  key_iv - hexdump(len=16): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  key_rsc - hexdump(len=8): 00 00 00 00 00 00 00 00
  key_id (reserved) - hexdump(len=8): 00 00 00 00 00 00 00 00
  key_mic - hexdump(len=16): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
wlan0: State: ASSOCIATED -> 4WAY_HANDSHAKE
wlan0: WPA: RX message 1 of 4-Way Handshake from <MAC address removed> (ver=2)
RSN: msg 1/4 key data - hexdump(len=0):
WPA: Renewed SNonce - hexdump(len=32): 86 00 01 e2 6b c2 3f e1 f2 de 97 26 d5 3d 69 6a 78 e8 d4 05 e8 62 da 72 f9 dc a7 6d b4 1c 13 9a
WPA: PTK derivation - A1=c0:4a:00:14:6c:a8 A2=<MAC address removed>
WPA: Nonce1 - hexdump(len=32): 86 00 01 e2 6b c2 3f e1 f2 de 97 26 d5 3d 69 6a 78 e8 d4 05 e8 62 da 72 f9 dc a7 6d b4 1c 13 9a
WPA: Nonce2 - hexdump(len=32): f2 db b5 a9 f2 ed 7e d3 f3 2b 65 e0 f9 65 4f 11 3c 84 99 e8 cd 4e 24 1e dd bd 4f 5b 2b 07 ab 49
WPA: PMK - hexdump(len=32): [REMOVED]
WPA: PTK - hexdump(len=48): [REMOVED]
WPA: WPA IE for msg 2/4 - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
WPA: Replay Counter - hexdump(len=8): 00 00 00 00 00 00 00 01
wlan0: WPA: Sending EAPOL-Key 2/4
WPA: KCK - hexdump(len=16): [REMOVED]
WPA: Derived Key MIC - hexdump(len=16): f3 68 43 96 a4 12 c6 84 31 73 d9 ed 55 83 22 0a
wlan0: RX EAPOL from <MAC address removed>
wlan0: IEEE 802.1X RX: version=2 type=3 length=175
wlan0:   EAPOL-Key type=2
wlan0:   key_info 0x13ca (ver=2 keyidx=0 rsvd=0 Pairwise Install Ack MIC Secure Encr)
wlan0:   key_length=16 key_data_length=80
  replay_counter - hexdump(len=8): 00 00 00 00 00 00 00 02
  key_nonce - hexdump(len=32): f2 db b5 a9 f2 ed 7e d3 f3 2b 65 e0 f9 65 4f 11 3c 84 99 e8 cd 4e 24 1e dd bd 4f 5b 2b 07 ab 49
  key_iv - hexdump(len=16): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  key_rsc - hexdump(len=8): 57 30 00 00 00 00 00 00
  key_id (reserved) - hexdump(len=8): 00 00 00 00 00 00 00 00
  key_mic - hexdump(len=16): 2f e3 70 3f 51 21 9a fb 85 5a 5d 65 0d 73 fd 8c
RSN: encrypted key data - hexdump(len=80): 1a d3 7b 4e 2d 80 75 e7 e1 93 a1 59 01 b5 d6 8e 49 42 77 6e 83 ee 3f 6e 68 3e 47 a7 cc 18 f2 5b b5 17 e4 a2 65 a6 3d ea 56 d9 4c 9b 7c ff e4 bd 2e 7c aa f4 1e ab 27 f8 8b 89 95 89 4a b7 31 96 d2 ec f6 b4 95 91 58 3f 9e 7f 48 a2 7d ba c2 2a
WPA: decrypted EAPOL-Key key data - hexdump(len=72): [REMOVED]
wlan0: State: 4WAY_HANDSHAKE -> 4WAY_HANDSHAKE
wlan0: WPA: RX message 3 of 4-Way Handshake from <MAC address removed> (ver=2)
WPA: IE KeyData - hexdump(len=72): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 16 00 50 f2 01 01 00 00 50 f2 04 01 00 00 50 f2 04 01 00 00 50 f2 02 dd 16 00 0f ac 01 01 00 a9 0f c7 30 c4 b5 67 81 8f f1 fa 78 64 2b e2 3e dd 00
WPA: RSN IE in EAPOL-Key - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
WPA: WPA IE in EAPOL-Key - hexdump(len=24): dd 16 00 50 f2 01 01 00 00 50 f2 04 01 00 00 50 f2 04 01 00 00 50 f2 02
WPA: GTK in EAPOL-Key - hexdump(len=24): [REMOVED]
wlan0: WPA: Sending EAPOL-Key 4/4
WPA: KCK - hexdump(len=16): [REMOVED]
WPA: Derived Key MIC - hexdump(len=16): 1d fc f8 10 3c e4 a4 50 8d 6e ca 8f b6 4f e1 fa
wlan0: WPA: Installing PTK to the driver
wpa_driver_nl80211_set_key: ifindex=4 (wlan0) alg=3 addr=0x1e3ef08 key_idx=0 set_tx=1 seq_len=6 key_len=16
nl80211: KEY_DATA - hexdump(len=16): [REMOVED]
nl80211: KEY_SEQ - hexdump(len=6): 00 00 00 00 00 00
   addr=<MAC address removed>
EAPOL: External notification - portValid=1
wlan0: State: 4WAY_HANDSHAKE -> GROUP_HANDSHAKE
RSN: received GTK in pairwise handshake - hexdump(len=18): [REMOVED]
WPA: Group Key - hexdump(len=16): [REMOVED]
wlan0: WPA: Installing GTK to the driver (keyidx=1 tx=0 len=16)
WPA: RSC - hexdump(len=6): 57 30 00 00 00 00
wpa_driver_nl80211_set_key: ifindex=4 (wlan0) alg=3 addr=0x47186e key_idx=1 set_tx=0 seq_len=6 key_len=16
nl80211: KEY_DATA - hexdump(len=16): [REMOVED]
nl80211: KEY_SEQ - hexdump(len=6): 57 30 00 00 00 00
   broadcast key
wlan0: WPA: Key negotiation completed with <MAC address removed> [PTK=CCMP GTK=CCMP]
wlan0: Cancelling authentication timeout
wlan0: State: GROUP_HANDSHAKE -> COMPLETED
wlan0: Radio work 'sme-connect'@0x1e3fcf0 done in 0.020542 seconds
wlan0: CTRL-EVENT-CONNECTED - Connection to <MAC address removed> completed [id=0 id_str=]
nl80211: Set wlan0 operstate 0->1 (UP)
netlink: Operstate: ifindex=4 linkmode=-1 (no change), operstate=6 (IF_OPER_UP)
EAPOL: External notification - portValid=1
EAPOL: External notification - EAP success=1
EAPOL: SUPP_PAE entering state AUTHENTICATING
EAPOL: SUPP_BE entering state SUCCESS
EAP: EAP entering state DISABLED
EAPOL: SUPP_PAE entering state AUTHENTICATED
EAPOL: Supplicant port status: Authorized
nl80211: Set supplicant port authorized for <MAC address removed>
EAPOL: SUPP_BE entering state IDLE
EAPOL authentication completed - result=SUCCESS
RTM_NEWLINK: ifi_index=4 ifname=wlan0 operstate=6 linkmode=1 ifi_flags=0x11043 ([UP][RUNNING][LOWER_UP])
EAPOL: startWhen --> 0
EAPOL: disable timer tick
wlan0: RX EAPOL from <MAC address removed>
wlan0: IEEE 802.1X RX: version=2 type=3 length=127
wlan0:   EAPOL-Key type=2
wlan0:   key_info 0x1382 (ver=2 keyidx=0 rsvd=0 Group Ack MIC Secure Encr)
wlan0:   key_length=16 key_data_length=32
  replay_counter - hexdump(len=8): 00 00 00 00 00 00 00 03
  key_nonce - hexdump(len=32): f2 db b5 a9 f2 ed 7e d3 f3 2b 65 e0 f9 65 4f 11 3c 84 99 e8 cd 4e 24 1e dd bd 4f 5b 2b 07 ab 4a
  key_iv - hexdump(len=16): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  key_rsc - hexdump(len=8): 00 00 00 00 00 00 00 00
  key_id (reserved) - hexdump(len=8): 00 00 00 00 00 00 00 00
  key_mic - hexdump(len=16): 98 7e 0a 7e 43 65 9a 4d f6 69 91 5d 56 8e 87 bf
RSN: encrypted key data - hexdump(len=32): 3d 20 02 1f ec dd f4 ef 3e 2b 3c 00 be e4 97 92 17 38 5a da 59 7c 71 9d 3f 63 5e 2a 91 d2 4e 7f
WPA: decrypted EAPOL-Key key data - hexdump(len=24): [REMOVED]
wlan0: WPA: RX message 1 of Group Key Handshake from <MAC address removed> (ver=2)
RSN: msg 1/2 key data - hexdump(len=24): dd 16 00 0f ac 01 02 00 78 af ca 7f a8 0e d3 35 5e 39 7f 8c 81 bf 71 a4
WPA: GTK in EAPOL-Key - hexdump(len=24): [REMOVED]
RSN: received GTK in group key handshake - hexdump(len=18): 02 00 78 af ca 7f a8 0e d3 35 5e 39 7f 8c 81 bf 71 a4
wlan0: State: COMPLETED -> GROUP_HANDSHAKE
WPA: Group Key - hexdump(len=16): [REMOVED]
wlan0: WPA: Installing GTK to the driver (keyidx=2 tx=0 len=16)
WPA: RSC - hexdump(len=6): 00 00 00 00 00 00
wpa_driver_nl80211_set_key: ifindex=4 (wlan0) alg=3 addr=0x47186e key_idx=2 set_tx=0 seq_len=6 key_len=16
nl80211: KEY_DATA - hexdump(len=16): [REMOVED]
nl80211: KEY_SEQ - hexdump(len=6): 00 00 00 00 00 00
   broadcast key
wlan0: WPA: Sending EAPOL-Key 2/2
WPA: KCK - hexdump(len=16): [REMOVED]
WPA: Derived Key MIC - hexdump(len=16): 62 83 08 7b d4 5f e5 cf 2f 4b a5 19 43 27 c2 4d
wlan0: WPA: Group rekeying completed with <MAC address removed> [GTK=CCMP]
wlan0: Cancelling authentication timeout
wlan0: State: GROUP_HANDSHAKE -> COMPLETED
wlan0: Control interface command 'STATUS'
wlan0: Control interface command 'STATUS'
wlan0: Control interface command 'STATUS'
wpa_supplicant v2.2-devel
random: Trying to read entropy from /dev/random
Successfully initialized wpa_supplicant
Initializing interface 'wlan0' conf '/etc/wpa_supplicant/wpa_supplicant.conf' driver 'default' ctrl_interface 'N/A' bridge 'N/A'
Configuration file '/etc/wpa_supplicant/wpa_supplicant.conf' -> '/etc/wpa_supplicant/wpa_supplicant.conf'
Reading configuration file '/etc/wpa_supplicant/wpa_supplicant.conf'
ctrl_interface='DIR=/run/wpa_supplicant GROUP=wheel'
update_config=1
country='US'
ap_scan=1
eapol_version=1
fast_reauth=1
Priority group 5
   id=0 ssid='<ssid removed>'
rfkill: initial event: idx=0 type=1 op=0 soft=0 hard=0
nl80211: TDLS supported
nl80211: TDLS external setup
nl80211: Supported cipher 00-0f-ac:1
nl80211: Supported cipher 00-0f-ac:5
nl80211: Supported cipher 00-0f-ac:2
nl80211: Supported cipher 00-0f-ac:4
nl80211: Supported cipher 00-0f-ac:6
nl80211: Using driver-based off-channel TX
nl80211: Use separate P2P group interface (driver advertised support)
nl80211: interface wlan0 in phy phy0
nl80211: Set mode ifindex 4 iftype 2 (STATION)
nl80211: Subscribe to mgmt frames with non-AP handle 0x2647b70
nl80211: Register frame type=0xd0 nl_handle=0x2647b70 match=06
nl80211: Register frame type=0xd0 nl_handle=0x2647b70 match=0a07
nl80211: Register frame type=0xd0 nl_handle=0x2647b70 match=0a11
netlink: Operstate: ifindex=4 linkmode=1 (userspace-control), operstate=5 (IF_OPER_DORMANT)
nl80211: driver param='(null)'
Add interface wlan0 to a new radio phy0
nl80211: Regulatory information - country=US
nl80211: 2402-2472 @ 40 MHz 27 mBm
nl80211: 5170-5250 @ 40 MHz 17 mBm
nl80211: 5250-5330 @ 40 MHz 20 mBm (DFS)
nl80211: 5490-5600 @ 40 MHz 20 mBm (DFS)
nl80211: 5650-5710 @ 40 MHz 20 mBm (DFS)
nl80211: 5735-5835 @ 40 MHz 30 mBm
nl80211: 57240-63720 @ 2160 MHz 40 mBm
nl80211: Added 802.11b mode based on 802.11g information
wlan0: Own MAC address: c0:4a:00:14:6c:a8
wpa_driver_nl80211_set_key: ifindex=4 (wlan0) alg=0 addr=(nil) key_idx=0 set_tx=0 seq_len=0 key_len=0
wpa_driver_nl80211_set_key: ifindex=4 (wlan0) alg=0 addr=(nil) key_idx=1 set_tx=0 seq_len=0 key_len=0
wpa_driver_nl80211_set_key: ifindex=4 (wlan0) alg=0 addr=(nil) key_idx=2 set_tx=0 seq_len=0 key_len=0
wpa_driver_nl80211_set_key: ifindex=4 (wlan0) alg=0 addr=(nil) key_idx=3 set_tx=0 seq_len=0 key_len=0
wlan0: RSN: flushing PMKID list in the driver
nl80211: Flush PMKIDs
wlan0: Setting scan request: 0.100000 sec
EAPOL: SUPP_PAE entering state DISCONNECTED
EAPOL: Supplicant port status: Unauthorized
nl80211: Skip set_supp_port(unauthorized) while not associated
EAPOL: KEY_RX entering state NO_KEY_RECEIVE
EAPOL: SUPP_BE entering state INITIALIZE
EAP: EAP entering state DISABLED
Using existing control interface directory.
ctrl_interface_group=10 (from group name 'wheel')
ctrl_iface bind(PF_UNIX) failed: Address already in use
ctrl_iface exists, but does not allow connections - assuming it was leftover from forced program termination
Successfully replaced leftover ctrl_iface socket '/run/wpa_supplicant/wlan0'
wlan0: Added interface wlan0
wlan0: State: DISCONNECTED -> DISCONNECTED
nl80211: Set wlan0 operstate 0->0 (DORMANT)
netlink: Operstate: ifindex=4 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
random: Got 20/20 bytes from /dev/random
wlan0: State: DISCONNECTED -> SCANNING
wlan0: Starting AP scan for wildcard SSID
wlan0: Add radio work 'scan'@0x2667c50
wlan0: First radio work item in the queue - schedule start immediately
wlan0: Starting radio work 'scan'@0x2667c50 after 0.000006 second wait
wlan0: nl80211: scan request
Scan requested (ret=0) - scan timeout 10 seconds
nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for wlan0
wlan0: nl80211: Scan trigger
wlan0: Event SCAN_STARTED (49) received
wlan0: Own scan request started a scan in 0.000016 seconds
wlan0: CTRL-EVENT-SCAN-STARTED 
EAPOL: disable timer tick
nl80211: Drv Event 34 (NL80211_CMD_NEW_SCAN_RESULTS) received for wlan0
wlan0: nl80211: New scan results available
nl80211: Scan probed for SSID ''
nl80211: Scan included frequencies: 2412 2417 2422 2427 2432 2437 2442 2447 2452 2457 2462 5180 5200 5220 5240 5260 5280 5300 5320 5745 5765 5785 5805 5825
wlan0: Event SCAN_RESULTS (3) received
wlan0: Scan completed in 1.632826 seconds
nl80211: Received scan results (1 BSSes)
wlan0: BSS: Start scan result update 1
wlan0: BSS: Add new id 0 BSSID <MAC address removed> SSID '<ssid removed>'
BSS: last_scan_res_used=1/32
wlan0: New scan results available (own=1 ext=0)
wlan0: Radio work 'scan'@0x2667c50 done in 1.639823 seconds
wlan0: Selecting BSS from priority group 5
wlan0: 0: <MAC address removed> ssid='<ssid removed>' wpa_ie_len=22 rsn_ie_len=20 caps=0x431 level=-61 wps
wlan0:    selected based on RSN IE
wlan0:    selected BSS <MAC address removed> ssid='<ssid removed>'
wlan0: Considering connect request: reassociate: 0  selected: <MAC address removed>  bssid: 00:00:00:00:00:00  pending: 00:00:00:00:00:00  wpa_state: SCANNING  ssid=0x2647530  current_ssid=(nil)
wlan0: Request association with <MAC address removed>
wlan0: Add radio work 'sme-connect'@0x2648cf0
wlan0: First radio work item in the queue - schedule start immediately
wlan0: Starting radio work 'sme-connect'@0x2648cf0 after 0.000006 second wait
wlan0: Automatic auth_alg selection: 0x1
RSN: PMKSA cache search - network_ctx=(nil) try_opportunistic=0
RSN: Search for BSSID <MAC address removed>
RSN: No PMKSA cache entry found
wlan0: RSN: using IEEE 802.11i/D9.0
wlan0: WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 2 proto 2
WPA: set AP WPA IE - hexdump(len=24): dd 16 00 50 f2 01 01 00 00 50 f2 04 01 00 00 50 f2 04 01 00 00 50 f2 02
WPA: set AP RSN IE - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
wlan0: WPA: using GTK CCMP
wlan0: WPA: using PTK CCMP
wlan0: WPA: using KEY_MGMT WPA-PSK
WPA: Set own WPA IE default - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
wlan0: Cancelling scan request
wlan0: SME: Trying to authenticate with <MAC address removed> (SSID='<ssid removed>' freq=2442 MHz)
wlan0: State: SCANNING -> AUTHENTICATING
EAPOL: External notification - EAP success=0
EAPOL: External notification - EAP fail=0
EAPOL: External notification - portControl=Auto
nl80211: Authenticate (ifindex=4)
  * bssid=<MAC address removed>
  * freq=2442
  * SSID - hexdump_ascii(len=16):
     <hex dump ascii>   <ssid removed>
  * IEs - hexdump(len=0): [NULL]
  * Auth Type 0
nl80211: Authentication request send successfully
nl80211: Drv Event 19 (NL80211_CMD_NEW_STATION) received for wlan0
nl80211: New station <MAC address removed>
nl80211: Drv Event 37 (NL80211_CMD_AUTHENTICATE) received for wlan0
nl80211: Authenticate event
wlan0: Event AUTH (11) received
wlan0: SME: Authentication response: peer=<MAC address removed> auth_type=0 auth_transaction=2 status_code=0
wlan0: Trying to associate with <MAC address removed> (SSID='<ssid removed>' freq=2442 MHz)
wlan0: State: AUTHENTICATING -> ASSOCIATING
nl80211: Set wlan0 operstate 0->0 (DORMANT)
netlink: Operstate: ifindex=4 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
WPA: set own WPA/RSN IE - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
nl80211: Associate (ifindex=4)
  * bssid=<MAC address removed>
  * freq=2442
  * SSID - hexdump_ascii(len=16):
     <hex dump ascii>   <ssid removed>
  * IEs - hexdump(len=32): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 7f 08 00 00 00 00 00 00 00 40
  * WPA Versions 0x2
  * pairwise=0xfac04
  * group=0xfac04
  * akm=0xfac02
nl80211: Association request send successfully
RTM_NEWLINK: ifi_index=4 ifname=wlan0 operstate=5 linkmode=1 ifi_flags=0x11003 ([UP][LOWER_UP])
nl80211: Drv Event 38 (NL80211_CMD_ASSOCIATE) received for wlan0
nl80211: Associate event
wlan0: Event ASSOC (0) received
wlan0: Association info event
resp_ies - hexdump(len=146): 01 08 02 04 0b 0c 12 16 18 24 32 04 30 48 60 6c 2d 1a ef 11 03 ff ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 04 06 e6 e7 0d 00 33 1a ef 11 03 ff ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 04 06 e6 e7 0d 00 3d 16 07 0f 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 34 16 07 0f 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 dd 18 00 50 f2 02 01 01 83 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00
wlan0: freq=2442 MHz
wlan0: State: ASSOCIATING -> ASSOCIATED
nl80211: Set wlan0 operstate 0->0 (DORMANT)
netlink: Operstate: ifindex=4 linkmode=-1 (no change), operstate=5 (IF_OPER_DORMANT)
wlan0: Associated to a new BSS: BSSID=<MAC address removed>
wlan0: Associated with <MAC address removed>
wlan0: WPA: Association event - clear replay counter
wlan0: WPA: Clear old PTK
EAPOL: External notification - portEnabled=0
EAPOL: External notification - portValid=0
EAPOL: External notification - EAP success=0
EAPOL: External notification - portEnabled=1
EAPOL: SUPP_PAE entering state CONNECTING
EAPOL: enable timer tick
EAPOL: SUPP_BE entering state IDLE
wlan0: Setting authentication timeout: 10 sec 0 usec
wlan0: Cancelling scan request
nl80211: Drv Event 46 (NL80211_CMD_CONNECT) received for wlan0
nl80211: Ignore connect event (cmd=46) when using userspace SME
wlan0: RX EAPOL from <MAC address removed>
wlan0: Setting authentication timeout: 10 sec 0 usec
wlan0: IEEE 802.1X RX: version=2 type=3 length=95
wlan0:   EAPOL-Key type=2
wlan0:   key_info 0x8a (ver=2 keyidx=0 rsvd=0 Pairwise Ack)
wlan0:   key_length=16 key_data_length=0
  replay_counter - hexdump(len=8): 00 00 00 00 00 00 00 01
  key_nonce - hexdump(len=32): f2 db b5 a9 f2 ed 7e d3 f3 2b 65 e0 f9 65 4f 11 3c 84 99 e8 cd 4e 24 1e dd bd 4f 5b 2b 07 ab 58
  key_iv - hexdump(len=16): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  key_rsc - hexdump(len=8): 00 00 00 00 00 00 00 00
  key_id (reserved) - hexdump(len=8): 00 00 00 00 00 00 00 00
  key_mic - hexdump(len=16): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
wlan0: State: ASSOCIATED -> 4WAY_HANDSHAKE
wlan0: WPA: RX message 1 of 4-Way Handshake from <MAC address removed> (ver=2)
RSN: msg 1/4 key data - hexdump(len=0):
WPA: Renewed SNonce - hexdump(len=32): 49 d9 5a 30 db 08 a5 45 d7 50 89 e3 1f 2a 87 de 63 79 69 7d 49 e0 b1 ed 0f d2 64 39 86 1a d6 70
WPA: PTK derivation - A1=c0:4a:00:14:6c:a8 A2=<MAC address removed>
WPA: Nonce1 - hexdump(len=32): 49 d9 5a 30 db 08 a5 45 d7 50 89 e3 1f 2a 87 de 63 79 69 7d 49 e0 b1 ed 0f d2 64 39 86 1a d6 70
WPA: Nonce2 - hexdump(len=32): f2 db b5 a9 f2 ed 7e d3 f3 2b 65 e0 f9 65 4f 11 3c 84 99 e8 cd 4e 24 1e dd bd 4f 5b 2b 07 ab 58
WPA: PMK - hexdump(len=32): [REMOVED]
WPA: PTK - hexdump(len=48): [REMOVED]
WPA: WPA IE for msg 2/4 - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
WPA: Replay Counter - hexdump(len=8): 00 00 00 00 00 00 00 01
wlan0: WPA: Sending EAPOL-Key 2/4
WPA: KCK - hexdump(len=16): [REMOVED]
WPA: Derived Key MIC - hexdump(len=16): 09 f0 2d 80 63 3a 86 86 69 7b ae 95 09 d5 30 56
wlan0: RX EAPOL from <MAC address removed>
wlan0: IEEE 802.1X RX: version=2 type=3 length=175
wlan0:   EAPOL-Key type=2
wlan0:   key_info 0x13ca (ver=2 keyidx=0 rsvd=0 Pairwise Install Ack MIC Secure Encr)
wlan0:   key_length=16 key_data_length=80
  replay_counter - hexdump(len=8): 00 00 00 00 00 00 00 02
  key_nonce - hexdump(len=32): f2 db b5 a9 f2 ed 7e d3 f3 2b 65 e0 f9 65 4f 11 3c 84 99 e8 cd 4e 24 1e dd bd 4f 5b 2b 07 ab 58
  key_iv - hexdump(len=16): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  key_rsc - hexdump(len=8): 00 00 00 00 00 00 00 00
  key_id (reserved) - hexdump(len=8): 00 00 00 00 00 00 00 00
  key_mic - hexdump(len=16): 60 2b b8 c7 5a df 1c a6 34 35 2a db a1 a1 59 88
RSN: encrypted key data - hexdump(len=80): 9c 09 c2 ee ee 02 c2 93 1c 73 f9 e4 f9 b4 04 18 19 39 e6 b9 b1 cb 6b 85 29 e2 fd 18 fa 5f b8 94 ba 2b c5 be 21 e9 db 00 a6 51 6b b0 85 9e 69 66 68 5b a2 ea 55 c8 d2 51 41 a1 b6 fb ab b8 c7 58 b4 c7 fe f9 06 d8 a8 d4 01 03 2d f7 c6 61 c4 6a
WPA: decrypted EAPOL-Key key data - hexdump(len=72): [REMOVED]
wlan0: State: 4WAY_HANDSHAKE -> 4WAY_HANDSHAKE
wlan0: WPA: RX message 3 of 4-Way Handshake from <MAC address removed> (ver=2)
WPA: IE KeyData - hexdump(len=72): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00 dd 16 00 50 f2 01 01 00 00 50 f2 04 01 00 00 50 f2 04 01 00 00 50 f2 02 dd 16 00 0f ac 01 01 00 f0 4a d0 ad 7d 06 5f 33 fc cc a8 6c d1 2f 73 f0 dd 00
WPA: RSN IE in EAPOL-Key - hexdump(len=22): 30 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 0f ac 02 00 00
WPA: WPA IE in EAPOL-Key - hexdump(len=24): dd 16 00 50 f2 01 01 00 00 50 f2 04 01 00 00 50 f2 04 01 00 00 50 f2 02
WPA: GTK in EAPOL-Key - hexdump(len=24): [REMOVED]
wlan0: WPA: Sending EAPOL-Key 4/4
WPA: KCK - hexdump(len=16): [REMOVED]
WPA: Derived Key MIC - hexdump(len=16): 8a 21 e8 c6 1e e4 2e a0 f8 99 61 5f 2b f9 c9 50
wlan0: WPA: Installing PTK to the driver
wpa_driver_nl80211_set_key: ifindex=4 (wlan0) alg=3 addr=0x2647f08 key_idx=0 set_tx=1 seq_len=6 key_len=16
nl80211: KEY_DATA - hexdump(len=16): [REMOVED]
nl80211: KEY_SEQ - hexdump(len=6): 00 00 00 00 00 00
   addr=<MAC address removed>
EAPOL: External notification - portValid=1
wlan0: State: 4WAY_HANDSHAKE -> GROUP_HANDSHAKE
RSN: received GTK in pairwise handshake - hexdump(len=18): [REMOVED]
WPA: Group Key - hexdump(len=16): [REMOVED]
wlan0: WPA: Installing GTK to the driver (keyidx=1 tx=0 len=16)
WPA: RSC - hexdump(len=6): 00 00 00 00 00 00
wpa_driver_nl80211_set_key: ifindex=4 (wlan0) alg=3 addr=0x47186e key_idx=1 set_tx=0 seq_len=6 key_len=16
nl80211: KEY_DATA - hexdump(len=16): [REMOVED]
nl80211: KEY_SEQ - hexdump(len=6): 00 00 00 00 00 00
   broadcast key
wlan0: WPA: Key negotiation completed with <MAC address removed> [PTK=CCMP GTK=CCMP]
wlan0: Cancelling authentication timeout
wlan0: State: GROUP_HANDSHAKE -> COMPLETED
wlan0: Radio work 'sme-connect'@0x2648cf0 done in 0.020514 seconds
wlan0: CTRL-EVENT-CONNECTED - Connection to <MAC address removed> completed [id=0 id_str=]
nl80211: Set wlan0 operstate 0->1 (UP)
netlink: Operstate: ifindex=4 linkmode=-1 (no change), operstate=6 (IF_OPER_UP)
EAPOL: External notification - portValid=1
EAPOL: External notification - EAP success=1
EAPOL: SUPP_PAE entering state AUTHENTICATING
EAPOL: SUPP_BE entering state SUCCESS
EAP: EAP entering state DISABLED
EAPOL: SUPP_PAE entering state AUTHENTICATED
EAPOL: Supplicant port status: Authorized
nl80211: Set supplicant port authorized for <MAC address removed>
EAPOL: SUPP_BE entering state IDLE
EAPOL authentication completed - result=SUCCESS
RTM_NEWLINK: ifi_index=4 ifname=wlan0 operstate=6 linkmode=1 ifi_flags=0x11043 ([UP][RUNNING][LOWER_UP])
EAPOL: startWhen --> 0
EAPOL: disable timer tick
wlan0: Control interface command 'STATUS'
wlan0: Control interface command 'STATUS'
wlan0: Control interface command 'STATUS'
wlan0: Control interface command 'STATUS'
wlan0: Control interface command 'STATUS'
wlan0: Control interface command 'STATUS'
wlan0: Control interface command 'STATUS'
wlan0: Control interface command 'STATUS'
wlan0: RX EAPOL from <MAC address removed>
wlan0: IEEE 802.1X RX: version=2 type=3 length=127
wlan0:   EAPOL-Key type=2
wlan0:   key_info 0x1382 (ver=2 keyidx=0 rsvd=0 Group Ack MIC Secure Encr)
wlan0:   key_length=16 key_data_length=32
  replay_counter - hexdump(len=8): 00 00 00 00 00 00 00 03
  key_nonce - hexdump(len=32): f2 db b5 a9 f2 ed 7e d3 f3 2b 65 e0 f9 65 4f 11 3c 84 99 e8 cd 4e 24 1e dd bd 4f 5b 2b 07 ab 64
  key_iv - hexdump(len=16): 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  key_rsc - hexdump(len=8): 00 00 00 00 00 00 00 00
  key_id (reserved) - hexdump(len=8): 00 00 00 00 00 00 00 00
  key_mic - hexdump(len=16): 4b ff f9 19 e6 7b 63 a4 46 79 e3 22 b1 1e 96 d4
RSN: encrypted key data - hexdump(len=32): db 6c 2e b5 ed a9 9d 17 a9 a2 5e d5 b5 69 5c 79 fa 7b 39 51 4b 6d 27 48 5e 1e 70 34 0a cc aa 40
WPA: decrypted EAPOL-Key key data - hexdump(len=24): [REMOVED]
wlan0: WPA: RX message 1 of Group Key Handshake from <MAC address removed> (ver=2)
RSN: msg 1/2 key data - hexdump(len=24): dd 16 00 0f ac 01 02 00 5a 9f cb 8b 37 07 f2 ed f8 b7 bf 79 9c 1a 65 2d
WPA: GTK in EAPOL-Key - hexdump(len=24): [REMOVED]
RSN: received GTK in group key handshake - hexdump(len=18): 02 00 5a 9f cb 8b 37 07 f2 ed f8 b7 bf 79 9c 1a 65 2d
wlan0: State: COMPLETED -> GROUP_HANDSHAKE
WPA: Group Key - hexdump(len=16): [REMOVED]
wlan0: WPA: Installing GTK to the driver (keyidx=2 tx=0 len=16)
WPA: RSC - hexdump(len=6): 00 00 00 00 00 00
wpa_driver_nl80211_set_key: ifindex=4 (wlan0) alg=3 addr=0x47186e key_idx=2 set_tx=0 seq_len=6 key_len=16
nl80211: KEY_DATA - hexdump(len=16): [REMOVED]
nl80211: KEY_SEQ - hexdump(len=6): 00 00 00 00 00 00
   broadcast key
wlan0: WPA: Sending EAPOL-Key 2/2
WPA: KCK - hexdump(len=16): [REMOVED]
WPA: Derived Key MIC - hexdump(len=16): 79 34 82 52 95 4f c7 9c 14 f7 3c 7f 2c 8a 1c cc
wlan0: WPA: Group rekeying completed with <MAC address removed> [GTK=CCMP]
wlan0: Cancelling authentication timeout
wlan0: State: GROUP_HANDSHAKE -> COMPLETED
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
Url : http://lists.ath9k.org/pipermail/ath9k-devel/attachments/20140531/d3edace2/attachment-0001.pgp 

             reply	other threads:[~2014-05-31 20:39 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-05-31 20:39 Joe M [this message]
2014-05-31 21:02 ` [ath9k-devel] Lost wireless connection every 6th minute Joe M

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20140531203943.GA22715@master \
    --to=joe9mail@gmail.com \
    --cc=ath9k-devel@lists.ath9k.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.